blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 2 247 | content_id stringlengths 40 40 | detected_licenses listlengths 0 57 | license_type stringclasses 2 values | repo_name stringlengths 4 111 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringlengths 4 58 | visit_date timestamp[ns]date 2015-07-25 18:16:41 2023-09-06 10:45:08 | revision_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | committer_date timestamp[ns]date 1970-01-14 14:03:36 2023-09-06 06:22:19 | github_id int64 3.89k 689M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 25 values | gha_event_created_at timestamp[ns]date 2012-06-07 00:51:45 2023-09-14 21:58:52 ⌀ | gha_created_at timestamp[ns]date 2008-03-27 23:40:48 2023-08-24 19:49:39 ⌀ | gha_language stringclasses 159 values | src_encoding stringclasses 34 values | language stringclasses 1 value | is_vendor bool 1 class | is_generated bool 2 classes | length_bytes int64 7 10.5M | extension stringclasses 111 values | filename stringlengths 1 195 | text stringlengths 7 10.5M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
40c1407fbb73f991d5d7902c1f1a60e0407e42bd | e9110046ed99395e392e4d46d163234d708ece27 | /Lab1/Watkins-2630825-Lab-01/Lab1/exercise2/main.cpp | 33480a83daff548e68e0071802c8bf2209ce66aa | [] | no_license | csw112358/EECS_169 | db029d96cdff34ea3a016700d84d33dd8d442b97 | e8ffc2dbbf72f5cad7acb0fa3d3731b316d7d5f0 | refs/heads/master | 2021-05-14T12:25:51.996362 | 2018-01-05T17:17:04 | 2018-01-05T17:17:04 | 116,407,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 196 | cpp | main.cpp | #include <iostream>
int main(int argc, char** argv)
{
std::cout << "My name is Chris Watkins.\nI am a physics major.\nMy hobbies are:\n\tReading\n\tCoding\n \tInvesting\nGoodbye" << std::endl;
}
|
8d7eb4d3be3e6a72fa7243425f876d238304c19e | 7633802e35480e1b44d3a557f5f62a9e5801976f | /DSA/merging.cpp | 2b0202e9bca54d684eafbe326224e0270c5c63c6 | [] | no_license | vaibhavagarwal47/Competetive-Coding-With-C- | 80740d9c3a7bd24fb2bc232e0921e33397f073a3 | a2983b106b8e13d6934a67c5619ca0cdb87ee8c3 | refs/heads/main | 2023-03-20T11:50:53.427504 | 2021-03-10T13:25:16 | 2021-03-10T13:25:16 | 329,033,317 | 0 | 0 | null | 2021-01-12T15:42:16 | 2021-01-12T15:42:15 | null | UTF-8 | C++ | false | false | 1,573 | cpp | merging.cpp | /*
#include<iostream>
using namespace std;
void merging(int n1,int n2,int m,int a1[],int a2[],int a3[],int index){
m=n1+n2;
for(int i=0;i<n1;i++){
a3[index]=a1[i];
index++;
}
for(int i=0;i<n2;i++){
a3[index]=a2[i];
index++;
}
for(int i=0;i<m;i++){
cout<<a3[i]<<" ";
}
}
int main(){
int n1,n2,m,a1[1000],a2[1000],a3[1000],index=0;
cout<<"enter the size of array 1-\n";
cin>>n1;
cout<<"enter elements of array 1-\n";
for(int i=0;i<n1;i++){
cin>>a1[i];
}
cout<<"enter the size of array 2-\n";
cin>>n2;
cout<<"enter elements of array 2-\n";
for(int i=0;i<n2;i++){
cin>>a2[i];
}
merging(n1,n2,m,a1,a2,a3,index);
return 0;
}
*/
#include<iostream>
using namespace std;
void insertion_sort(int a3[],int m){
int key,j;
for(int i=1;i<m;i++){
key=a3[i];
j=i-1;
while(j>=0 && a3[j]>key){
a3[j+1]=a3[j];
j=j-1;
}
a3[j+1]=key;
}
for(int i=0;i<m;i++){
cout<<a3[i]<<" ";
}
}
void merging(int n1,int n2,int m,int a1[],int a2[],int a3[],int index){
m=n1+n2;
for(int i=0;i<n1;i++){
a3[index]=a1[i];
index++;
}
for(int i=0;i<n2;i++){
a3[index]=a2[i];
index++;
}cout<<"the sorted and merged array a3 is: ";
insertion_sort(a3,m);
}
int main(){
int n1,n2,m,a1[1000],a2[1000],a3[1000],index=0;
cout<<"enter the size of array 1-\n";
cin>>n1;
cout<<"enter elements of array 1-\n";
for(int i=0;i<n1;i++){
cin>>a1[i];
}
cout<<"enter the size of array 2-\n";
cin>>n2;
cout<<"enter elements of array 2-\n";
for(int i=0;i<n2;i++){
cin>>a2[i];
}
merging(n1,n2,m,a1,a2,a3,index);
return 0;
} |
f6aac6d2c431a27e7eed8c3124a273f8b2f04c22 | 7b69439eb9d2cb081cb7671c46c52b76f92a7651 | /3-1_Po_LED_ctrl/PO_LED_ctrl/PO_LED_ctrl.ino | fe0b2de1c83408dfa9e8512dae0e83f103eb5e15 | [] | no_license | showoowohs/Po_Arduino_example | 4a013ef7377ecdbefeaca8dabd54bb2b423ce61a | 13e3adea81ebd8b3614c73ab6d4ebe7fe0220d4c | refs/heads/master | 2021-01-23T13:44:06.067524 | 2017-08-04T23:16:53 | 2017-08-04T23:16:53 | 27,001,866 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 381 | ino | PO_LED_ctrl.ino |
//digital pin 2
//#define Po_LED 2
//digital pin 3
#define Po_LED 3
void setup() {
pinMode(Po_LED, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(Po_LED, HIGH); // 讓LED不亮
delay(2000); // wait for a second
digitalWrite(Po_LED, LOW); // 讓LED亮
delay(1000); // wait for a second
}
|
93c65b0a704455fefb917dcbc7c01f37b90789a5 | 3bdf849c236e3efe5a5799aeb1a4022d4b3b463c | /include/logger/file_log_writer.h | 375f8d0b02b4ffa3947e2b3dc3964f466a906263 | [] | no_license | code-dreamer/QtLogger | aa0a98cec22e1611747068b307b2e600a717f8e0 | b82861d53e3c1e8a3e235195e1ea0bb4849cb69c | refs/heads/master | 2021-01-10T18:40:35.762445 | 2015-01-22T09:58:35 | 2015-01-22T09:58:35 | 29,597,474 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 709 | h | file_log_writer.h | #pragma once
#pragma warning(push, 0)
#pragma warning(disable: 4350)
#include <QFile>
#include <QTextStream>
#pragma warning(pop)
#include "logger/log_writer_base.h"
namespace logging {
;
class LOGGER_EXPORT file_log_writer : public log_writer_base
{
Q_DISABLE_COPY(file_log_writer)
public:
file_log_writer(const QString& file_name);
virtual ~file_log_writer();
public:
QString fileName() const;
void setFileName(const QString&);
protected:
virtual void do_write(const QString& log_entry) override;
bool openFile();
void closeFile();
private:
QFile log_file_;
QTextStream log_stream_;
mutable QMutex log_file_mutex_;
};
} // namespace logging
|
62616d533a5a8ec4c77b0a2384625aee95a03066 | 3944a12e2205499c06c5211327933ac6a4de8107 | /SarahPacketManager.cpp | e9676aa31a821465a435dbb941fccbf9c19a9ca6 | [] | no_license | saralaoui/EGPC | 31d5fe09988512e92d2c0a69fe1960e359a735b8 | 9840a17365ca0e34542b2c7295ea738ef8fa2aeb | refs/heads/master | 2021-01-01T20:05:11.143129 | 2013-10-02T02:47:11 | 2013-10-02T02:47:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,613 | cpp | SarahPacketManager.cpp | #include "all-include.h"
#include "SarahPacketManager.h"
/*class SarahPacketListener : public osc::OscPacketListener {
protected:
*/
void SarahPacketListener::ProcessMessage( const osc::ReceivedMessage& m,
const IpEndpointName& remoteEndpoint )
{
try{
// parsing single messages. osc::OsckPacketListener
// handles the bundle traversal.
if( strcmp( m.AddressPattern(), "/indice" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a0;
args >> a0 >> osc::EndMessage;
indice = a0;
}
if( strcmp( m.AddressPattern(), "/raideur" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a1;
args >> a1 >> osc::EndMessage;
raideur[(int)indice] = a1;
}
if( strcmp( m.AddressPattern(), "/longueur" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a2;
args >> a2 >> osc::EndMessage;
elongation[(int)indice] = a2;
}
if( strcmp( m.AddressPattern(), "/mu" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a4;
args >> a4 >> osc::EndMessage;
mu = a4;
}
if( strcmp( m.AddressPattern(), "/MassePlus" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a5;
args >> a5 >> osc::EndMessage;
MassePlus = a5;
}
if( strcmp( m.AddressPattern(), "/NBedges" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a9;
args >> a9 >> osc::EndMessage;
NB_EDGES = a9;
}
if( strcmp( m.AddressPattern(), "/NBmasse" ) == 0 ){
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
float a10;
args >> a10 >> osc::EndMessage;
NB_MASSES = a10;
}
else {
osc::ReceivedMessageArgumentStream args = m.ArgumentStream();
std::cout << "received message: " << m.AddressPattern() << endl;
}
} catch( osc::Exception& e ){
// any parsing errors such as unexpected argument types, or
// missing arguments get thrown as exceptions.
std::cout << "error while parsing message: "
<< m.AddressPattern() << ": " << e.what() << "\n";
}
}
|
572f3a5ce3f229034e18c28139b0f484621e1946 | 7bb889330cd3fbbc1039074033d8b4027a3619d1 | /src/output/AtmosphereOutputer.cpp | d09ef66c3355233c2f09675b06638455bd5d2376 | [] | no_license | hgenet/dostem | 94e6799b1bfb2e7b14fb632dc4ae9f299b38b6a1 | 6975fcc6a6368c81ee9bb2fdb13bddbd900f9ccc | refs/heads/master | 2020-12-24T15:40:57.247827 | 2012-12-13T01:22:35 | 2012-12-13T01:22:35 | 7,157,463 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,255 | cpp | AtmosphereOutputer.cpp | /*! \file
*/
#include "AtmosphereOutputer.h"
AtmosphereOutputer::AtmosphereOutputer(){
reinit();
};
void AtmosphereOutputer::reinit(){
};
#ifdef ODAY
void AtmosphereOutputer::outputDayGridVars(const int & yrcnt){ // at end of execution of one grid
//int yrcnt= outputer->getYrInd();
tdrvGDV->put_rec(&atmod->tdrvd[0],yrcnt);
rainGDV->put_rec(&atmod->raind[0], yrcnt);
snowGDV->put_rec(&atmod->snowd[0], yrcnt);
svpGDV->put_rec(&atmod->svpd[0], yrcnt);
dersvpGDV->put_rec(&atmod->dersvpd[0],yrcnt);
rhoaGDV->put_rec(&atmod->rhoad[0], yrcnt);
abshdGDV->put_rec(&atmod->abshdd[0], yrcnt);
dsrGDV->put_rec(&atmod->dsrd[0], yrcnt);
};
void AtmosphereOutputer::defineDayGridVars(){
daygf = siteoutputer->dayGrdFile;
dgyearD = daygf->get_dim("year");
dgdayD = daygf->get_dim("day");
tdrvGDV= daygf->add_var("TDRVGDV", ncFloat,dgyearD, dgdayD);
tdrvGDV->add_att("units","degC");
tdrvGDV->add_att("title", "Air Temperature");
rainGDV= daygf->add_var("RAIN", ncFloat,dgyearD, dgdayD);
rainGDV->add_att("units","mm/day");
rainGDV->add_att("title", "Rainfall");
snowGDV= daygf->add_var("SNOW", ncFloat,dgyearD, dgdayD);
snowGDV->add_att("units","mm/day");
snowGDV->add_att("title", "Snowfall");
dsrGDV= daygf->add_var("DSR", ncFloat,dgyearD, dgdayD);
svpGDV= daygf->add_var("SVP", ncFloat,dgyearD, dgdayD);
svpGDV->add_att("units","Pa");
svpGDV->add_att("title", "Saturated Vapor Pressure");
dersvpGDV= daygf->add_var("DERSVP", ncFloat,dgyearD, dgdayD);
svpGDV->add_att("units","Pa/degC");
svpGDV->add_att("title", "Derivative of SVP");
rhoaGDV= daygf->add_var("RHOA", ncFloat,dgyearD, dgdayD);
rhoaGDV->add_att("units","kg/m3");
rhoaGDV->add_att("title", "Air Density");
abshdGDV= daygf->add_var("ABSHD", ncFloat,dgyearD, dgdayD);
};
#endif
//output Monthlyvars at the end of model run
void AtmosphereOutputer::outputMonthGridVars(const int & yrcnt){
//int yrcnt =outputer->getYrInd();
taGMV->put_rec(&atmod->ta[0], yrcnt);
co2GMV->put_rec(&atmod->co2[0],yrcnt);
cldsGMV->put_rec(&atmod->clds[0], yrcnt);
eetGMV->put_rec(&atmod->eet[0],yrcnt);
petGMV->put_rec(&atmod->pet[0], yrcnt);
rnflGMV->put_rec(&atmod->rnfl[0], yrcnt);
snflGMV->put_rec(&atmod->snfl[0], yrcnt);
girrGMV->put_rec(&atmod->girr[0], yrcnt);
nirrGMV->put_rec(&atmod->nirr[0], yrcnt);
parGMV->put_rec(&atmod->par[0],yrcnt);
};
void AtmosphereOutputer::defineMonthGridVars(){
mongf = siteoutputer->monGrdFile;
mgyearD = mongf->get_dim("year");
mgmonD = mongf->get_dim("month");
eetGMV = mongf->add_var("EET", ncFloat, mgyearD, mgmonD);
eetGMV->add_att("units","mm/day");
eetGMV->add_att("title", "Actual Evapotranspiration");
petGMV = mongf->add_var("PET", ncFloat, mgyearD, mgmonD);
petGMV->add_att("units","mm/day");
petGMV->add_att("title", "Potential Evapotranspiration");
co2GMV = mongf->add_var("CO2", ncFloat, mgyearD, mgmonD);
co2GMV->add_att("units","ppmv");
co2GMV->add_att("title", "CO2 Concentration");
taGMV = mongf->add_var("TA", ncFloat, mgyearD, mgmonD);
taGMV->add_att("units","degC");
taGMV->add_att("title", "Air Temperature");
rnflGMV = mongf->add_var("RNFL", ncFloat, mgyearD, mgmonD);
rnflGMV->add_att("units","mm");
rnflGMV->add_att("title", "Snowfall");
snflGMV = mongf->add_var("SNFL", ncFloat, mgyearD, mgmonD);
snflGMV->add_att("units","mm");
snflGMV->add_att("title", "Snowfall");
nirrGMV = mongf->add_var("NIRR", ncFloat, mgyearD, mgmonD);
nirrGMV->add_att("units","W/m2");
nirrGMV->add_att("title", "Incident Solar Raidation at Surface");
girrGMV = mongf->add_var("GIRR", ncFloat, mgyearD, mgmonD);
girrGMV->add_att("units","W/m2");
girrGMV->add_att("title", "GIRR");
parGMV = mongf->add_var("PAR", ncFloat, mgyearD, mgmonD);
parGMV->add_att("units","W/m2");
parGMV->add_att("title", "Photosynthetic Active Raditaion");
cldsGMV = mongf->add_var("CLDS", ncFloat, mgyearD, mgmonD);
cldsGMV->add_att("units","percent");
cldsGMV->add_att("title", "Cloud Fraction");
};
void AtmosphereOutputer::outputYearGridVars(const int & yrcnt){
rnflGYV->put_rec(&atmod->yrrnfl, yrcnt);
snflGYV->put_rec(&atmod->yrsnfl,yrcnt);
taGYV->put_rec(&atmod->yrta,yrcnt);
};
void AtmosphereOutputer::defineYearGridVars(){
yrgf = siteoutputer->yrGrdFile;
ygyearD = yrgf->get_dim("year");
rnflGYV = yrgf->add_var("RNFL", ncFloat, ygyearD);
snflGYV = yrgf->add_var("SNFL", ncFloat, ygyearD);
taGYV = yrgf->add_var("TA", ncFloat, ygyearD);
};
void AtmosphereOutputer::setOutputer(SiteOutputer * outputerp){
siteoutputer = outputerp;
// define output var after the outputer pointing
#ifdef ODAY
defineDayGridVars();
#endif
if(OMONTH){
defineMonthGridVars();
}
if(OYEAR){
defineYearGridVars();
}
};
void AtmosphereOutputer::setOutdata( AtmOutData* outdata){
atmod = outdata;
};
|
1f1f68913f88018a049d8ed0e5c62ccd4451e84d | e4a8425dd2eb2089a428ae8a4471264ccfb25c96 | /libs/dutils_image/src/dutils_img_pipe/auto_alg/image_sampling_float.h | c9a8da5934b2c429f8949ca0d51d4cfc5d8b4deb | [
"MIT",
"BSD-3-Clause",
"BSL-1.0",
"Apache-2.0",
"LGPL-2.0-only",
"LicenseRef-scancode-public-domain"
] | permissive | TheImagingSource/tiscamera | b2175152740f6307041fc5fc60f551eedb3a6c95 | 0be2537f8816c5ec892a4ebe4ad0f196f26021e7 | refs/heads/master | 2023-09-01T12:01:36.979982 | 2023-07-12T04:52:39 | 2023-07-12T04:52:39 | 16,314,708 | 279 | 159 | Apache-2.0 | 2023-07-12T04:52:40 | 2014-01-28T14:53:28 | C++ | UTF-8 | C++ | false | false | 432 | h | image_sampling_float.h |
#pragma once
#include <dutils_img_pipe/auto_alg_params.h>
#include <dutils_img/pixel_structs.h>
#include "auto_sample_image.h"
namespace auto_alg::impl
{
// Sampling functions
void auto_sample_byfloat( const img::img_descriptor& image, image_sampling_points_rgbf& points );
void auto_sample_pwl_bayer( const img::img_descriptor& image, image_sampling_points_rgbf& points );
}
|
596caf6ab3f5707899ddcf95550f3800848d2e05 | 0758aa9b644cd866195c217017ebaaf849d31252 | /slatkisi/slatkisi.cpp | 1cfdb2b60c9c0ffb8877107a4d288193056f6333 | [] | no_license | SebastianLindmark/algorithms-and-kattis-problems | fedbf5d6645dac17caf9a149c64ec81fc0152396 | 41b093cb1e0778eccb95f0d0cfd538ea49a3d253 | refs/heads/master | 2020-04-03T11:28:33.856325 | 2018-10-29T14:11:21 | 2018-10-29T14:11:21 | 155,222,863 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 464 | cpp | slatkisi.cpp | //Author Sebastian Lindmark
#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
int main() {
long long int price;
long long int zeroes;
cin >> price;
cin >> zeroes;
long long int billSize = 1;
for (int i = 0; i < zeroes; i++) {
billSize *= 10;
}
long double p = ((long double )price) / ((long double )billSize);
cout << std::fixed <<(int)(std::round(p) * billSize) << endl;
return 0;
} |
8f244df224d7b03ae8b157adfce3c79733984ade | e6d1b71cb550681a1d85acc538c8ec19136f8285 | /src/mfast/instructions/int_instructions.h | c601367bd1b9dc1b4111bc5df8033cb5c65931f8 | [
"BSD-3-Clause",
"LGPL-3.0-only"
] | permissive | objectcomputing/mFAST | bea0f142a814845f47eaaabf54d6073fc23e9507 | d8036e0b7a765bd012b7a14ae30f077fbf9d1fa5 | refs/heads/master | 2023-06-28T00:31:45.004852 | 2023-06-19T16:38:15 | 2023-06-19T16:38:15 | 13,109,739 | 217 | 125 | BSD-3-Clause | 2023-06-19T16:38:16 | 2013-09-26T01:12:22 | C++ | UTF-8 | C++ | false | false | 3,824 | h | int_instructions.h | // Copyright (c) 2016, Huang-Ming Huang, Object Computing, Inc.
// All rights reserved.
//
// This file is part of mFAST.
// See the file license.txt for licensing information.
#pragma once
#include "field_instruction.h"
namespace mfast {
class dictionary_builder;
class MFAST_EXPORT integer_field_instruction_base : public field_instruction {
public:
integer_field_instruction_base(operator_enum_t operator_id, int field_type,
presence_enum_t optional, uint32_t id,
const char *name, const char *ns,
const op_context_t *context,
const value_storage &initial_storage,
instruction_tag tag);
integer_field_instruction_base(const integer_field_instruction_base &other);
virtual void construct_value(value_storage &storage,
allocator *alloc) const override;
value_storage &prev_value() { return *prev_value_; }
const value_storage &prev_value() const { return *prev_value_; }
const op_context_t *op_context() const { return op_context_; }
void op_context(const op_context_t *v) { op_context_ = v; }
const value_storage &initial_value() const { return initial_value_; }
const value_storage &initial_or_default_value() const {
return *initial_or_default_value_;
}
void initial_value(const value_storage &v) {
initial_value_ = v;
initial_or_default_value_ =
initial_value_.is_empty() ? &default_value_ : &initial_value_;
has_initial_value_ = !initial_value_.is_empty();
}
protected:
friend class dictionary_builder;
const op_context_t *op_context_;
value_storage initial_value_;
value_storage *prev_value_;
value_storage prev_storage_;
const value_storage *initial_or_default_value_;
static const value_storage default_value_;
virtual void update_invariant() override {
field_instruction::update_invariant();
has_initial_value_ = !initial_value_.is_empty();
}
};
template <typename T>
class int_field_instruction : public integer_field_instruction_base {
public:
int_field_instruction(operator_enum_t operator_id, presence_enum_t optional,
uint32_t id, const char *name, const char *ns,
const op_context_t *context,
int_value_storage<T> initial_value,
instruction_tag tag = instruction_tag());
int_field_instruction(const int_field_instruction &other);
virtual void accept(field_instruction_visitor &visitor,
void *context) const override;
virtual int_field_instruction<T> *
clone(arena_allocator &alloc) const override;
};
template <typename T>
int_field_instruction<T>::int_field_instruction(
operator_enum_t operator_id, presence_enum_t optional, uint32_t id,
const char *name, const char *ns, const op_context_t *context,
int_value_storage<T> initial_value, instruction_tag tag)
: integer_field_instruction_base(operator_id, field_type_trait<T>::id,
optional, id, name, ns, context,
initial_value.storage_, tag) {}
template <typename T>
inline int_field_instruction<T>::int_field_instruction(
const int_field_instruction &other)
: integer_field_instruction_base(other) {}
template <typename T>
int_field_instruction<T> *
int_field_instruction<T>::clone(arena_allocator &alloc) const {
return new (alloc) int_field_instruction<T>(*this);
}
typedef int_field_instruction<int32_t> int32_field_instruction;
typedef int_field_instruction<uint32_t> uint32_field_instruction;
typedef int_field_instruction<int64_t> int64_field_instruction;
typedef int_field_instruction<uint64_t> uint64_field_instruction;
} /* mfast */
|
79395df7c30bfb259b0f25ac77bff93435ff61f1 | 4262591e1586b909692756c48288e690af813b66 | /src/project/DOTATribe/src/BossScoreDataHandler.cpp | d85ef56df0bcc4b1782712121802d141e8423968 | [] | no_license | atom-chen/DotaTribe | 924a6df4463bffb6cc08df5d8d5cdb4a1a5740fb | 2f6409a78825250ffa38b18b9819dee3ec9d1182 | refs/heads/master | 2020-11-28T03:44:41.631302 | 2019-08-23T07:04:34 | 2019-08-23T07:04:34 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,617 | cpp | BossScoreDataHandler.cpp | //Name:BoseScoreDataHandler.h
//Function:Boss积分系统
//Author:fangjun
//date:20140215
#include "../include/BossScorePacket.h"
#include "../include/BossScoreDataHandler.h"
#include "../include/EventSystem.h"
#include "../include/EventTyper.h"
#include "../include/NFControlsManager.h"
void BSScoreRewardItem::decodePacketData(cobra_win::DPacket & packet)
{
packet>>index;
packet>>minScore;
packet>>type;
packet>>count;
if(type == 0)
{
packet>>catogory;
packet>>templateId;
unsigned short strlen = 0;
char * str = NULL;
packet>>strlen;
str = new char[strlen+1];
packet.read(str,strlen);
str[strlen] = '\0';
name.assign(str);
delete[] str;
str = NULL;
packet>>quality;
packet>>iconId;
}
packet>>status;
}
void BSRankRewardItem::decodePacketData(cobra_win::DPacket & packet)
{
packet>>type;
packet>>count;
if(type == 0)
{
packet>>catogory;
packet>>templateId;
unsigned short strlen = 0;
char * str = NULL;
packet>>strlen;
str = new char[strlen+1];
packet.read(str,strlen);
str[strlen] = '\0';
name.assign(str);
delete[] str;
str = NULL;
packet>>quality;
packet>>iconId;
}
}
BSRewardData::BSRewardData()
{
destroyData();
}
BSRewardData::~BSRewardData()
{
destroyData();
}
void BSRewardData::destroyData()
{
for(unsigned int i = 0; i < scoreRewardVector.size(); ++i)
{
delete scoreRewardVector[i];
}
scoreRewardVector.clear();
for(unsigned int i = 0; i < rankRewardVector.size(); ++i)
{
delete rankRewardVector[i];
}
rankRewardVector.clear();
}
void BSRewardData::decodePacketData(cobra_win::DPacket & packet)
{
destroyData();
packet>>maxScore;
packet.read(rank);
char count = 0;
packet>>count;
BSScoreRewardItem * sitem = NULL;
for (char i = 0; i < count; ++i)
{
sitem = new BSScoreRewardItem();
sitem->decodePacketData(packet);
scoreRewardVector.push_back(sitem);
}
packet>>leftDrawSeconds;
packet>>count;
BSRankRewardItem * ritem = NULL;
for (char i = 0; i < count; ++i)
{
ritem = new BSRankRewardItem();
ritem->decodePacketData(packet);
rankRewardVector.push_back(ritem);
}
}
void BSRankItem::decodePacketData(cobra_win::DPacket & packet)
{
packet>>playerId;
packet>>iconId;
unsigned short strlen = 0;
char * str = NULL;
packet>>strlen;
str = new char[strlen+1];
packet.read(str,strlen);
str[strlen] = '\0';
name.assign(str);
delete[] str;
str = NULL;
packet>>score;
packet.read(rank);
packet.read(level);
}
BSRankList::BSRankList()
{
destroyData();
}
BSRankList::~BSRankList()
{
destroyData();
}
void BSRankList::destroyData()
{
for(unsigned int i = 0; i < rankVector.size(); ++i)
{
delete rankVector[i];
}
rankVector.clear();
}
void BSRankList::decodePacketData(cobra_win::DPacket & packet)
{
destroyData();
short count = 0;
packet.read(count);
BSRankItem * item = NULL;
for(short i = 0; i < count; ++i)
{
item = new BSRankItem();
item->decodePacketData(packet);
rankVector.push_back(item);
}
}
void BSBossInfo::decodePacketData(cobra_win::DPacket & packet)
{
packet>>quality;
packet>>iconId;
}
BSBossScoreData::BSBossScoreData()
{
destroyData();
}
BSBossScoreData::~BSBossScoreData()
{
destroyData();
}
void BSBossScoreData::destroyData()
{
hasReward = 0;
for(unsigned int i = 0; i < bossVector.size(); ++i)
{
delete bossVector[i];
}
bossVector.clear();
nameVector.clear();
scoreVector.clear();
}
void BSBossScoreData::decodePacketData(cobra_win::DPacket & packet)
{
destroyData();
unsigned short strlen = 0;
char * str = NULL;
packet>>strlen;
str = new char[strlen+1];
packet.read(str,strlen);
str[strlen] = '\0';
description.assign(str);
delete[] str;
str = NULL;
packet>>status;
packet>>leftSeconds;
char count = 0;
packet>>count;
BSBossInfo * inf = NULL;
for(char i = 0; i < count; ++i)
{
inf = new BSBossInfo;
inf->decodePacketData(packet);
bossVector.push_back(inf);
}
packet>>maxScore;
packet.read(rank);
packet.read(leftFreeTimes);
packet.read(leftChallengeItemCount);
packet.read(challengePrice);
packet>>count;
for(char i = 0; i < count; ++i)
{
std::string nametemp = "";
unsigned short strlen = 0;
char * str = NULL;
packet>>strlen;
str = new char[strlen+1];
packet.read(str,strlen);
str[strlen] = '\0';
nametemp.assign(str);
delete[] str;
str = NULL;
nameVector.push_back(nametemp);
}
packet>>count;
for(char i = 0; i < count; ++i)
{
int score = 0;
packet>>score;
scoreVector.push_back(score);
}
packet>>hasReward;
}
BossScoreDataHandler::BossScoreDataHandler()
{
m_pBossScoreData = NULL;
m_pRankList = NULL;
m_pRewardData = NULL;
m_iFreeTimesSync = 0;
}
BossScoreDataHandler::~BossScoreDataHandler()
{
if(m_pBossScoreData)
{
delete m_pBossScoreData;
m_pBossScoreData = NULL;
}
if(m_pRankList)
{
delete m_pRankList;
m_pRankList = NULL;
}
if(m_pRewardData)
{
delete m_pRewardData;
m_pRewardData = NULL;
}
m_iFreeTimesSync = 0;
}
void BossScoreDataHandler::onDestroy()
{
m_iFreeTimesSync = 0;
}
void BossScoreDataHandler::OnAthleticEnd(int stageID, bool win)
{
//ToServerEnterBoss();
}
//进入世界boss
void BossScoreDataHandler::ToServerEnterBoss()
{
NFC_showCommunicationWating(true);
CSEnterBossScorePacket pa;
pa.Send();
}
void BossScoreDataHandler::ToClientEnterBossResult()
{
EVENTSYSTEM->PushEvent(_TYPED_EVENT_BOSS_ENTER_GETDATA_);
NFC_showCommunicationWating(false);
}
//进入排行榜
void BossScoreDataHandler::ToServerEnterRank()
{
NFC_showCommunicationWating(true);
CSBossScoreRankPacket pa;
pa.Send();
}
void BossScoreDataHandler::ToClientEnterRankResult()
{
EVENTSYSTEM->PushEvent(_TYPED_EVENT_BOSS_RANK_GETDATA_);
NFC_showCommunicationWating(false);
}
//进入宝箱奖励
void BossScoreDataHandler::ToServerEnterReward()
{
NFC_showCommunicationWating(true);
CSBossScoreRewardPacket pa;
pa.Send();
}
void BossScoreDataHandler::ToClientEnterRewardResult()
{
EVENTSYSTEM->PushEvent(_TYPED_EVENT_BOSS_REWARD_GETDATA_);
NFC_showCommunicationWating(false);
}
//开始挑战
void BossScoreDataHandler::ToServerChallenge()
{
NFC_showCommunicationWating(true);
CSBossScoreChallengePacket pa;
pa.Send();
}
//领取奖励
void BossScoreDataHandler::ToServerGetReward(char type, char index)
{
NFC_showCommunicationWating(true);
CSBossScoreGetRewardPacket pa(type, index);
pa.Send();
}
void BossScoreDataHandler::ToClientGetRewardResult(char type, char index)
{
if(type == 0)
{//积分奖励
unsigned int sz = m_pRewardData->scoreRewardVector.size();
while(1)
{
if(sz == 0)
break;
if(m_pRewardData->scoreRewardVector[--sz]->index == index)
{
m_pRewardData->scoreRewardVector[sz]->status = 0;//设置已领取
break;
}
}
}
else if(type == 1)
{//排名奖励
m_pRewardData->leftDrawSeconds = -1;
}
//检查是否还有奖励
bool has = false;
unsigned int i = 0;
for(; i < m_pRewardData->scoreRewardVector.size(); ++i)
{
if(m_pRewardData->scoreRewardVector[i]->status == 1)
break;
}
if(i < m_pRewardData->scoreRewardVector.size())
{
has = has || true;
}
// unsigned int j = 0;
// for(; j < m_pRewardData->rankRewardVector.size(); ++j)
// {
// if(m_pRewardData->leftDrawSeconds == 0)
// break;
// }
// if(j < m_pRewardData->rankRewardVector.size())
// {
// has = has || true;
// }
if(m_pRewardData->leftDrawSeconds == 0)
{
has = has || true;
}
if(has)
{
m_pBossScoreData->hasReward = 1;
}
else
{
m_pBossScoreData->hasReward = 0;
}
EVENTSYSTEM->PushEvent(_TYPED_EVENT_BOSS_LINGQU_GETDATA_, _to_event_param_((int)type), _to_event_param_((int)index));
NFC_showCommunicationWating(false);
}
|
9e062b22161717076ae1155aa39fe8dd26edd8d9 | b944e591878823545e77a334c4f19cce2214d271 | /Module_2/5_2fin.cpp | 249fc205b9c491cb92458260e880c9038cad56ed | [] | no_license | HustonMmmavr/Algoritms | 697df810f34cf0d27d118e8086beccbf004a6a31 | 3d51de2394a506e3e976e72fc54cb43e759764c4 | refs/heads/master | 2021-01-21T16:05:36.263191 | 2017-05-20T14:54:50 | 2017-05-20T14:54:50 | 91,874,735 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,159 | cpp | 5_2fin.cpp | #include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <utility>
#include <list>
#include <vector>
using namespace std;
#define MEMORY_STEP 2
typedef long sizeT;
//////////////////////////////////////////////////////////////////////////
// Exception
class Exception
{
char message[1024];
public:
Exception() {}
Exception(const char *message, const char* file, const char* func, int line);
const char* GetMessage() const;
};
// Exception Realisation
Exception::Exception(const char *message, const char* file, const char* func, int line)
{
sprintf(this->message, "In file %s func %s line %d message %s", file, func, line, message);
}
const char* Exception::GetMessage() const
{
return message;
}
#define ThrowException(msg) throw Exception(msg, __FILE__, __FUNCTION__, __LINE__);
template <typename T>
class LightArray
{
T* ptr;
sizeT allocatedSize;
sizeT elementsInBuffer;
public:
LightArray();
LightArray(sizeT allocatedSize);
LightArray(const LightArray& arr);
~LightArray();
void PushBack(const T& data);
void Resize();
sizeT Count() const { return elementsInBuffer; }
sizeT Allocated() const { return allocatedSize; }
T* GetPointer();
void Swap(T *a, T* b) { T temp = *a; *a = *b, *b = temp; }
const T& operator[] (sizeT i) const { return ptr[i]; }
T& operator[] (sizeT i) { return ptr[i]; }
LightArray& operator = (const LightArray& arr);
const T& AtIndex(sizeT i) const { return ptr[i]; }
T& AtIndex(sizeT i) { return ptr[i]; }
};
template <typename T>
LightArray<T>::LightArray()
{
allocatedSize = 0;
ptr = NULL;
elementsInBuffer = 0;
}
template <typename T>
LightArray<T>::LightArray(const LightArray<T>& arr)
{
ptr = NULL;
*this = arr;
}
template <typename T>
LightArray<T>::LightArray(sizeT sizeToAlloc)
{
allocatedSize = sizeToAlloc;
if (allocatedSize == 0)
{
ptr = NULL;
}
else
{
ptr = new T[allocatedSize];
if (!ptr)
ThrowException("cant allocate");
}
elementsInBuffer = 0;
}
template <typename T>
LightArray<T>::~LightArray()
{
delete[] ptr;
}
template <typename T>
void LightArray<T>::PushBack(const T& data)
{
if (elementsInBuffer == allocatedSize)
Resize();
ptr[elementsInBuffer++] = data;
}
template <typename T>
void LightArray<T>::Resize()
{
if (allocatedSize == 0)
{
allocatedSize = 1;
ptr = new T[allocatedSize];
if (!ptr) ThrowException("err");
return;
}
sizeT newSize = allocatedSize * MEMORY_STEP;
T *oldPtr = ptr;
T *newPtr = new T[newSize];
if (!newPtr) ThrowException("Cant reallcate");
for (int i = 0; i < allocatedSize; i++)
newPtr[i] = oldPtr[i];
delete[] oldPtr;
ptr = newPtr;
allocatedSize *= MEMORY_STEP;
}
template <typename T>
T *LightArray<T>::GetPointer()
{
return ptr;
}
template <typename T>
LightArray<T>& LightArray<T>::operator = (const LightArray<T>& arr)
{
delete[] ptr;
allocatedSize = arr.allocatedSize;
elementsInBuffer = arr.elementsInBuffer;
if (allocatedSize == 0)
{
ptr = NULL;
return *this;
}
ptr = new T[allocatedSize];
if (!ptr) ThrowException("Cant alloc");
for (int i = 0; i < elementsInBuffer; i++)
ptr[i] = arr.ptr[i];
//memcpy(ptr, arr.ptr, elementsInBuffer * sizeof(T));
return *this;
}
void SiftDown(LightArray<int> &arr, int *idxs, int pos, int size, int k)//vector<list<int> > &arr, int pos, int size)
{
int largest;
bool flag = 1;
int count = size;
for (int i = pos; 2 * i + 1 < count && flag;) // while nodes not empty
{
largest = i;
int left = 2 * i + 1;
if (left < count && arr[idxs[i]] > arr[idxs[left]])
largest = left;
int right = 2 * i + 2;
if (right < count && arr[idxs[largest]] > arr[idxs[right]])
largest = right;
if (largest != i)
{
swap(idxs[i], idxs[largest]);
i = largest;
}
else flag = false;
}
}
void MakeHeap(LightArray<int> &arr, int *idxs, int size, int k)//vector<list<int> > &arr)
{
for (int i = size / 2 - 1; i >= 0; i--)
SiftDown(arr, idxs, i, size, k);//arr.size());
}
void ReadArray(LightArray<int> &arr, int *n, int *k)
{
scanf("%d %d", n, k);
arr = LightArray<int>(*n);
for (int i = 0; i < *n; i++)
{
int data;
scanf("%d", &data);
arr.PushBack(data);
}
}
void KTrackingMerge(LightArray<int> &arr, int k)
{
int *idxs = new int[k];
for (int i = 0; i < k; i++)
idxs[i] = i;
int n = arr.Count();
MakeHeap(arr, idxs, k, k);
int elements = k;
while(elements > 0)
{
printf("%d ", arr[idxs[0]]);
idxs[0] += k;
if (idxs[0] >= n)
{
idxs[0] = idxs[--elements];
}
if (elements)
SiftDown(arr, idxs, 0, elements, k);
}
delete[] idxs;
}
int main()
{
LightArray<int> arr;
int n;
int k;
ReadArray(arr, &n, &k);
KTrackingMerge(arr, k);
return 0;
}
|
d3247e51caebe634fa77b0f38a35587af4a81fec | 0103454b52923519a02260ade79ded03d345efa9 | /driver/port.build/module.scipy.sparse.dok.cpp | 333bc323082b9e9b9f44de37482b05be2f9fb366 | [] | no_license | podema/echo3d | 8c7722a942c187a1d9ee01fe3120439cdce7dd6b | 42af02f01d56c49f0616289b1f601bd1e8dbc643 | refs/heads/master | 2016-09-06T16:22:13.043969 | 2015-03-24T10:39:19 | 2015-03-24T10:39:19 | 32,747,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,417,804 | cpp | module.scipy.sparse.dok.cpp | // Generated code for Python source for module 'scipy.sparse.dok'
// created by Nuitka version 0.5.5.3
// This code is in part copyright 2014 Kay Hayen.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "nuitka/prelude.hpp"
#include "__helpers.hpp"
// The _module_scipy$sparse$dok is a Python object pointer of module type.
// Note: For full compatability with CPython, every module variable access
// needs to go through it except for cases where the module cannot possibly
// have changed in the mean time.
PyObject *module_scipy$sparse$dok;
PyDictObject *moduledict_scipy$sparse$dok;
// The module constants used
extern PyObject *const_int_0;
extern PyObject *const_float_0_0;
extern PyObject *const_int_pos_1;
extern PyObject *const_int_pos_2;
extern PyObject *const_dict_empty;
extern PyObject *const_str_plain_M;
extern PyObject *const_str_plain_N;
extern PyObject *const_str_plain_T;
extern PyObject *const_str_plain__;
extern PyObject *const_str_plain_a;
extern PyObject *const_str_plain_b;
extern PyObject *const_str_plain_d;
extern PyObject *const_str_plain_i;
extern PyObject *const_str_plain_j;
extern PyObject *const_str_plain_v;
extern PyObject *const_str_plain_x;
extern PyObject *const_tuple_empty;
extern PyObject *const_str_plain_ii;
static PyObject *const_str_plain_jj;
extern PyObject *const_str_plain_np;
static PyObject *const_str_plain_ra;
extern PyObject *const_str_plain_rb;
static PyObject *const_str_plain_aij;
extern PyObject *const_str_plain_coo;
extern PyObject *const_str_plain_csc;
extern PyObject *const_str_plain_dok;
extern PyObject *const_str_plain_get;
extern PyObject *const_str_plain_int;
extern PyObject *const_str_plain_key;
extern PyObject *const_str_plain_map;
extern PyObject *const_str_plain_max;
extern PyObject *const_str_plain_min;
extern PyObject *const_str_plain_mul;
extern PyObject *const_str_plain_new;
extern PyObject *const_str_plain_nnz;
extern PyObject *const_str_plain_out;
extern PyObject *const_str_plain_val;
extern PyObject *const_str_plain_zip;
extern PyObject *const_str_plain_arg1;
extern PyObject *const_str_plain_base;
extern PyObject *const_str_plain_conj;
extern PyObject *const_str_plain_copy;
extern PyObject *const_str_plain_data;
extern PyObject *const_str_plain_dict;
extern PyObject *const_str_plain_fget;
extern PyObject *const_str_plain_flat;
extern PyObject *const_str_plain_izip;
extern PyObject *const_str_plain_keys;
extern PyObject *const_str_plain_list;
extern PyObject *const_str_plain_ndim;
static PyObject *const_str_plain_newM;
static PyObject *const_str_plain_newN;
extern PyObject *const_str_plain_next;
extern PyObject *const_str_plain_self;
extern PyObject *const_str_plain_size;
static PyObject *const_str_plain__list;
extern PyObject *const_str_plain__prod;
extern PyObject *const_str_plain_dtype;
extern PyObject *const_str_plain_float;
static PyObject *const_str_plain_i_seq;
extern PyObject *const_str_plain_index;
static PyObject *const_str_plain_j_seq;
static PyObject *const_str_plain_min_i;
static PyObject *const_str_plain_min_j;
extern PyObject *const_str_plain_numpy;
extern PyObject *const_str_plain_order;
extern PyObject *const_str_plain_other;
extern PyObject *const_str_plain_shape;
extern PyObject *const_str_plain_slice;
extern PyObject *const_str_plain_tocoo;
extern PyObject *const_str_plain_tocsc;
extern PyObject *const_str_plain_tocsr;
extern PyObject *const_str_plain_todok;
extern PyObject *const_str_plain_tuple;
extern PyObject *const_str_plain_value;
extern PyObject *const_str_plain_zeros;
extern PyObject *const_str_plain__shape;
extern PyObject *const_str_plain_astype;
extern PyObject *const_str_plain_divmod;
extern PyObject *const_str_plain_getcol;
extern PyObject *const_str_plain_getnnz;
extern PyObject *const_str_plain_getrow;
static PyObject *const_str_plain_i_stop;
static PyObject *const_str_plain_j_stop;
extern PyObject *const_str_plain_maxval;
extern PyObject *const_str_plain_n_vecs;
static PyObject *const_str_plain_newdok;
extern PyObject *const_str_plain_reduce;
extern PyObject *const_str_plain_resize;
extern PyObject *const_str_plain_result;
extern PyObject *const_str_plain_upcast;
extern PyObject *const_str_plain_update;
extern PyObject *const_str_plain_values;
extern PyObject *const_str_plain_xrange;
static PyObject *const_str_plain_zeroes;
extern PyObject *const_str_plain___add__;
extern PyObject *const_str_plain___all__;
extern PyObject *const_str_plain___doc__;
extern PyObject *const_str_plain___len__;
extern PyObject *const_str_plain___neg__;
extern PyObject *const_str_plain_asarray;
extern PyObject *const_str_plain_default;
extern PyObject *const_str_plain_i_slice;
static PyObject *const_str_plain_i_start;
extern PyObject *const_str_plain_indices;
extern PyObject *const_str_plain_isdense;
extern PyObject *const_str_plain_isshape;
static PyObject *const_str_plain_j_slice;
static PyObject *const_str_plain_j_start;
extern PyObject *const_str_plain_newsize;
extern PyObject *const_str_plain_sputils;
extern PyObject *const_str_plain_toarray;
extern PyObject *const_str_plain_todense;
extern PyObject *const_tuple_false_tuple;
extern PyObject *const_str_plain___file__;
extern PyObject *const_str_plain___imul__;
extern PyObject *const_str_plain___init__;
extern PyObject *const_str_plain___next__;
extern PyObject *const_str_plain___radd__;
extern PyObject *const_str_plain_division;
extern PyObject *const_str_plain_getdtype;
static PyObject *const_str_plain_i_stride;
static PyObject *const_str_plain_j_stride;
extern PyObject *const_str_plain_newshape;
extern PyObject *const_str_plain_operator;
extern PyObject *const_str_plain_property;
extern PyObject *const_str_plain_spmatrix;
extern PyObject *const_str_plain_functools;
static PyObject *const_str_plain_i_indices;
static PyObject *const_str_plain_i_intlike;
extern PyObject *const_str_plain_idx_dtype;
extern PyObject *const_str_plain_isintlike;
extern PyObject *const_str_plain_iteritems;
static PyObject *const_str_plain_j_indices;
static PyObject *const_str_plain_j_intlike;
extern PyObject *const_str_plain_res_dtype;
extern PyObject *const_str_plain_transpose;
extern PyObject *const_str_plain_IndexMixin;
extern PyObject *const_str_plain___future__;
extern PyObject *const_str_plain___module__;
static PyObject *const_str_plain_conjtransp;
extern PyObject *const_str_plain_coo_matrix;
extern PyObject *const_str_plain_dok_matrix;
extern PyObject *const_str_plain_isspmatrix;
extern PyObject *const_str_plain___getitem__;
extern PyObject *const_str_plain___setitem__;
extern PyObject *const_str_plain___truediv__;
extern PyObject *const_str_plain__mul_scalar;
extern PyObject *const_str_plain__mul_vector;
extern PyObject *const_tuple_float_0_0_tuple;
extern PyObject *const_tuple_none_none_tuple;
extern PyObject *const_str_plain___itruediv__;
static PyObject *const_str_plain__is_sequence;
extern PyObject *const_str_plain_isscalarlike;
extern PyObject *const_str_plain___docformat__;
extern PyObject *const_str_plain___metaclass__;
extern PyObject *const_str_plain__unpack_index;
extern PyObject *const_str_plain_upcast_scalar;
extern PyObject *const_tuple_str_plain_x_tuple;
static PyObject *const_str_plain_isSequenceType;
static PyObject *const_str_plain_isspmatrix_dok;
extern PyObject *const_str_plain_print_function;
static PyObject *const_str_plain__getitem_ranges;
extern PyObject *const_str_plain_absolute_import;
extern PyObject *const_str_plain_get_index_dtype;
extern PyObject *const_str_plain__index_to_arrays;
extern PyObject *const_str_plain__mul_multivector;
extern PyObject *const_str_plain_broadcast_arrays;
extern PyObject *const_tuple_str_plain_self_tuple;
extern PyObject *const_tuple_none_none_false_tuple;
static PyObject *const_tuple_str_plain_iteritems_tuple;
extern PyObject *const_tuple_str_plain_coo_matrix_tuple;
static PyObject *const_tuple_str_plain_isSequenceType_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_i_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_j_tuple;
static PyObject *const_tuple_str_plain_self_str_plain_new_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_copy_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_index_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_other_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_shape_tuple;
static PyObject *const_tuple_str_plain_zip_str_plain_xrange_tuple;
static PyObject *const_str_digest_095b379f2fe032d45bd08c20dba00a80;
static PyObject *const_str_digest_139214c1a344ec0235eb4f1d99a71a4b;
static PyObject *const_str_digest_1cc712602c4e531ef469466b008f302b;
static PyObject *const_str_digest_1d6d23d7fe83d06c5414199a84edcf10;
static PyObject *const_str_digest_1e81b571699e7e4a212705e9894d78d5;
extern PyObject *const_str_digest_25f749241d37f2e0f9fae215b567cf6f;
static PyObject *const_str_digest_5653dafe33dd2b9baccd63f85cb0b9ab;
static PyObject *const_str_digest_584c45a5d1d01dadf64f020c94d12a25;
extern PyObject *const_str_digest_597bf68b5eb90e62afad7674d7c0d147;
static PyObject *const_str_digest_5b6160903d6e3a07a84cde4c8dea8620;
static PyObject *const_str_digest_600afd5079f4c54e3a802d9aae84e5bd;
extern PyObject *const_str_digest_644880ce7dbf6c5f121ce247016ffe23;
static PyObject *const_str_digest_6c8ebeb97b8e0a68fb6853eca03934aa;
static PyObject *const_str_digest_6d5335383479b296f11cdd6b5f6916ce;
static PyObject *const_str_digest_6fd6fa67cd030b9bcc30d553e373e35a;
static PyObject *const_str_digest_755230e39e8e2884718623fa9de40bd5;
static PyObject *const_str_digest_7ed7a51c426bdfe1a016fbb04a89ae46;
extern PyObject *const_str_digest_83a0aac3d618d3c31fc37c156dca406d;
extern PyObject *const_str_digest_851016fb8f0713619e8e8d97f209004f;
static PyObject *const_str_digest_86af9e627a151b26bd892c09a86a6b1c;
static PyObject *const_str_digest_8daa1b713175887570e8bd759f8cc7ea;
static PyObject *const_str_digest_93582c8c0ba0026bb1184ae87e1be157;
static PyObject *const_str_digest_aa339f156291899a8f9a9b8fc5d139fe;
static PyObject *const_str_digest_bd489d90bd42335afe30aea8e84c9dda;
static PyObject *const_str_digest_cab6f81d1ca2e5c5943e05787fe07ae7;
extern PyObject *const_str_digest_dbbb6ab1d378bf4225b58198215baea8;
static PyObject *const_str_digest_dc8a053ed62b5b73a48b88f75a7f5bcb;
static PyObject *const_str_digest_e356b06c19d5f1d85f5a59e1bb86c8ef;
static PyObject *const_tuple_0fc234e186353356e16606afc0a33abe_tuple;
static PyObject *const_tuple_106124e77a5c3d3d511af369eca401e0_tuple;
static PyObject *const_tuple_17d3c37b75323993673489dca8bcab85_tuple;
static PyObject *const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple;
static PyObject *const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple;
static PyObject *const_tuple_6c6be1835af082c320583f446b83dac7_tuple;
static PyObject *const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple;
static PyObject *const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple;
static PyObject *const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple;
static PyObject *const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple;
extern PyObject *const_tuple_bbb623b1e1f1107d9edb2c8c75d36edd_tuple;
static PyObject *const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple;
static PyObject *const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple;
static PyObject *const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple;
extern PyObject *const_tuple_d704faac1fc14ae3111e98e63b29e8d3_tuple;
static PyObject *const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple;
static PyObject *const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple;
extern PyObject *const_tuple_str_plain_spmatrix_str_plain_isspmatrix_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_index_str_plain_x_tuple;
static PyObject *const_tuple_str_plain_self_str_plain_new_str_plain_key_tuple;
static PyObject *const_list_str_plain_dok_matrix_str_plain_isspmatrix_dok_list;
extern PyObject *const_tuple_str_plain_self_str_plain_order_str_plain_out_tuple;
extern PyObject *const_tuple_str_plain_self_str_plain_key_str_plain_default_tuple;
static PyObject *const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple;
static PyObject *const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple;
static PyObject *const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple;
static void _initModuleConstants(void)
{
const_str_plain_jj = UNSTREAM_STRING( &constant_bin[ 267376 ], 2, 1 );
const_str_plain_ra = UNSTREAM_STRING( &constant_bin[ 1480 ], 2, 1 );
const_str_plain_aij = UNSTREAM_STRING( &constant_bin[ 2355712 ], 3, 1 );
const_str_plain_newM = UNSTREAM_STRING( &constant_bin[ 267848 ], 4, 1 );
const_str_plain_newN = UNSTREAM_STRING( &constant_bin[ 267898 ], 4, 1 );
const_str_plain__list = UNSTREAM_STRING( &constant_bin[ 45395 ], 5, 1 );
const_str_plain_i_seq = UNSTREAM_STRING( &constant_bin[ 2355715 ], 5, 1 );
const_str_plain_j_seq = UNSTREAM_STRING( &constant_bin[ 2355720 ], 5, 1 );
const_str_plain_min_i = UNSTREAM_STRING( &constant_bin[ 266364 ], 5, 1 );
const_str_plain_min_j = UNSTREAM_STRING( &constant_bin[ 267273 ], 5, 1 );
const_str_plain_i_stop = UNSTREAM_STRING( &constant_bin[ 2355725 ], 6, 1 );
const_str_plain_j_stop = UNSTREAM_STRING( &constant_bin[ 2355731 ], 6, 1 );
const_str_plain_newdok = UNSTREAM_STRING( &constant_bin[ 267324 ], 6, 1 );
const_str_plain_zeroes = UNSTREAM_STRING( &constant_bin[ 2355737 ], 6, 1 );
const_str_plain_i_start = UNSTREAM_STRING( &constant_bin[ 267424 ], 7, 1 );
const_str_plain_j_slice = UNSTREAM_STRING( &constant_bin[ 2355743 ], 7, 1 );
const_str_plain_j_start = UNSTREAM_STRING( &constant_bin[ 267579 ], 7, 1 );
const_str_plain_i_stride = UNSTREAM_STRING( &constant_bin[ 267477 ], 8, 1 );
const_str_plain_j_stride = UNSTREAM_STRING( &constant_bin[ 267632 ], 8, 1 );
const_str_plain_i_indices = UNSTREAM_STRING( &constant_bin[ 267073 ], 9, 1 );
const_str_plain_i_intlike = UNSTREAM_STRING( &constant_bin[ 266963 ], 9, 1 );
const_str_plain_j_indices = UNSTREAM_STRING( &constant_bin[ 267128 ], 9, 1 );
const_str_plain_j_intlike = UNSTREAM_STRING( &constant_bin[ 267018 ], 9, 1 );
const_str_plain_conjtransp = UNSTREAM_STRING( &constant_bin[ 2355750 ], 10, 1 );
const_str_plain__is_sequence = UNSTREAM_STRING( &constant_bin[ 2355760 ], 12, 1 );
const_str_plain_isSequenceType = UNSTREAM_STRING( &constant_bin[ 2355772 ], 14, 1 );
const_str_plain_isspmatrix_dok = UNSTREAM_STRING( &constant_bin[ 266917 ], 14, 1 );
const_str_plain__getitem_ranges = UNSTREAM_STRING( &constant_bin[ 2355786 ], 15, 1 );
const_tuple_str_plain_iteritems_tuple = PyTuple_New( 1 );
PyTuple_SET_ITEM( const_tuple_str_plain_iteritems_tuple, 0, const_str_plain_iteritems ); Py_INCREF( const_str_plain_iteritems );
const_tuple_str_plain_isSequenceType_tuple = PyTuple_New( 1 );
PyTuple_SET_ITEM( const_tuple_str_plain_isSequenceType_tuple, 0, const_str_plain_isSequenceType ); Py_INCREF( const_str_plain_isSequenceType );
const_tuple_str_plain_self_str_plain_new_tuple = PyTuple_New( 2 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_new_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_new_tuple, 1, const_str_plain_new ); Py_INCREF( const_str_plain_new );
const_tuple_str_plain_zip_str_plain_xrange_tuple = PyTuple_New( 2 );
PyTuple_SET_ITEM( const_tuple_str_plain_zip_str_plain_xrange_tuple, 0, const_str_plain_zip ); Py_INCREF( const_str_plain_zip );
PyTuple_SET_ITEM( const_tuple_str_plain_zip_str_plain_xrange_tuple, 1, const_str_plain_xrange ); Py_INCREF( const_str_plain_xrange );
const_str_digest_095b379f2fe032d45bd08c20dba00a80 = UNSTREAM_STRING( &constant_bin[ 2355801 ], 40, 0 );
const_str_digest_139214c1a344ec0235eb4f1d99a71a4b = UNSTREAM_STRING( &constant_bin[ 2355841 ], 52, 0 );
const_str_digest_1cc712602c4e531ef469466b008f302b = UNSTREAM_STRING( &constant_bin[ 2355893 ], 49, 0 );
const_str_digest_1d6d23d7fe83d06c5414199a84edcf10 = UNSTREAM_STRING( &constant_bin[ 2355942 ], 16, 0 );
const_str_digest_1e81b571699e7e4a212705e9894d78d5 = UNSTREAM_STRING( &constant_bin[ 2355958 ], 32, 0 );
const_str_digest_5653dafe33dd2b9baccd63f85cb0b9ab = UNSTREAM_STRING( &constant_bin[ 2355990 ], 31, 0 );
const_str_digest_584c45a5d1d01dadf64f020c94d12a25 = UNSTREAM_STRING( &constant_bin[ 2356021 ], 1246, 0 );
const_str_digest_5b6160903d6e3a07a84cde4c8dea8620 = UNSTREAM_STRING( &constant_bin[ 2357267 ], 50, 0 );
const_str_digest_600afd5079f4c54e3a802d9aae84e5bd = UNSTREAM_STRING( &constant_bin[ 2357317 ], 82, 0 );
const_str_digest_6c8ebeb97b8e0a68fb6853eca03934aa = UNSTREAM_STRING( &constant_bin[ 2357399 ], 189, 0 );
const_str_digest_6d5335383479b296f11cdd6b5f6916ce = UNSTREAM_STRING( &constant_bin[ 2357588 ], 39, 0 );
const_str_digest_6fd6fa67cd030b9bcc30d553e373e35a = UNSTREAM_STRING( &constant_bin[ 2357627 ], 30, 0 );
const_str_digest_755230e39e8e2884718623fa9de40bd5 = UNSTREAM_STRING( &constant_bin[ 2357657 ], 18, 0 );
const_str_digest_7ed7a51c426bdfe1a016fbb04a89ae46 = UNSTREAM_STRING( &constant_bin[ 2357675 ], 70, 0 );
const_str_digest_86af9e627a151b26bd892c09a86a6b1c = UNSTREAM_STRING( &constant_bin[ 2357745 ], 116, 0 );
const_str_digest_8daa1b713175887570e8bd759f8cc7ea = UNSTREAM_STRING( &constant_bin[ 2357861 ], 79, 0 );
const_str_digest_93582c8c0ba0026bb1184ae87e1be157 = UNSTREAM_STRING( &constant_bin[ 2357940 ], 143, 0 );
const_str_digest_aa339f156291899a8f9a9b8fc5d139fe = UNSTREAM_STRING( &constant_bin[ 2358083 ], 61, 0 );
const_str_digest_bd489d90bd42335afe30aea8e84c9dda = UNSTREAM_STRING( &constant_bin[ 2358144 ], 34, 0 );
const_str_digest_cab6f81d1ca2e5c5943e05787fe07ae7 = UNSTREAM_STRING( &constant_bin[ 2358178 ], 24, 0 );
const_str_digest_dc8a053ed62b5b73a48b88f75a7f5bcb = UNSTREAM_STRING( &constant_bin[ 2358202 ], 31, 0 );
const_str_digest_e356b06c19d5f1d85f5a59e1bb86c8ef = UNSTREAM_STRING( &constant_bin[ 2335701 ], 64, 0 );
const_tuple_0fc234e186353356e16606afc0a33abe_tuple = PyTuple_New( 6 );
PyTuple_SET_ITEM( const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 1, const_str_plain_other ); Py_INCREF( const_str_plain_other );
PyTuple_SET_ITEM( const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 2, const_str_plain_result ); Py_INCREF( const_str_plain_result );
PyTuple_SET_ITEM( const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 3, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 4, const_str_plain_j ); Py_INCREF( const_str_plain_j );
PyTuple_SET_ITEM( const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 5, const_str_plain_v ); Py_INCREF( const_str_plain_v );
const_tuple_106124e77a5c3d3d511af369eca401e0_tuple = PyTuple_New( 5 );
PyTuple_SET_ITEM( const_tuple_106124e77a5c3d3d511af369eca401e0_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_106124e77a5c3d3d511af369eca401e0_tuple, 1, const_str_plain_coo_matrix ); Py_INCREF( const_str_plain_coo_matrix );
PyTuple_SET_ITEM( const_tuple_106124e77a5c3d3d511af369eca401e0_tuple, 2, const_str_plain_idx_dtype ); Py_INCREF( const_str_plain_idx_dtype );
PyTuple_SET_ITEM( const_tuple_106124e77a5c3d3d511af369eca401e0_tuple, 3, const_str_plain_data ); Py_INCREF( const_str_plain_data );
PyTuple_SET_ITEM( const_tuple_106124e77a5c3d3d511af369eca401e0_tuple, 4, const_str_plain_indices ); Py_INCREF( const_str_plain_indices );
const_tuple_17d3c37b75323993673489dca8bcab85_tuple = PyTuple_New( 6 );
PyTuple_SET_ITEM( const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 1, const_str_plain_other ); Py_INCREF( const_str_plain_other );
PyTuple_SET_ITEM( const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 2, const_str_plain_res_dtype ); Py_INCREF( const_str_plain_res_dtype );
PyTuple_SET_ITEM( const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 3, const_str_plain_new ); Py_INCREF( const_str_plain_new );
PyTuple_SET_ITEM( const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 4, const_str_plain_key ); Py_INCREF( const_str_plain_key );
PyTuple_SET_ITEM( const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 5, const_str_plain_val ); Py_INCREF( const_str_plain_val );
const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple = PyTuple_New( 6 );
PyTuple_SET_ITEM( const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 1, const_str_plain_M ); Py_INCREF( const_str_plain_M );
PyTuple_SET_ITEM( const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 2, const_str_plain_N ); Py_INCREF( const_str_plain_N );
PyTuple_SET_ITEM( const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 3, const_str_plain_new ); Py_INCREF( const_str_plain_new );
PyTuple_SET_ITEM( const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 4, const_str_plain_key ); Py_INCREF( const_str_plain_key );
PyTuple_SET_ITEM( const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 5, const_str_plain_value ); Py_INCREF( const_str_plain_value );
const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple = PyTuple_New( 9 );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 1, const_str_plain_other ); Py_INCREF( const_str_plain_other );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 2, const_str_plain_M ); Py_INCREF( const_str_plain_M );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 3, const_str_plain_N ); Py_INCREF( const_str_plain_N );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 4, const_str_plain_n_vecs ); Py_INCREF( const_str_plain_n_vecs );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 5, const_str_plain_result ); Py_INCREF( const_str_plain_result );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 6, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 7, const_str_plain_j ); Py_INCREF( const_str_plain_j );
PyTuple_SET_ITEM( const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 8, const_str_plain_v ); Py_INCREF( const_str_plain_v );
const_tuple_6c6be1835af082c320583f446b83dac7_tuple = PyMarshal_ReadObjectFromString( (char *)&constant_bin[ 2358233 ], 210 );
const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple = PyTuple_New( 4 );
PyTuple_SET_ITEM( const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple, 1, const_str_plain_i_indices ); Py_INCREF( const_str_plain_i_indices );
PyTuple_SET_ITEM( const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple, 2, const_str_plain_j_indices ); Py_INCREF( const_str_plain_j_indices );
PyTuple_SET_ITEM( const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple, 3, const_str_plain_shape ); Py_INCREF( const_str_plain_shape );
const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple = PyTuple_New( 17 );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 1, const_str_plain_i_indices ); Py_INCREF( const_str_plain_i_indices );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 2, const_str_plain_j_indices ); Py_INCREF( const_str_plain_j_indices );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 3, const_str_plain_shape ); Py_INCREF( const_str_plain_shape );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 4, const_str_plain_i_start ); Py_INCREF( const_str_plain_i_start );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 5, const_str_plain_i_stop ); Py_INCREF( const_str_plain_i_stop );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 6, const_str_plain_i_stride ); Py_INCREF( const_str_plain_i_stride );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 7, const_str_plain_j_start ); Py_INCREF( const_str_plain_j_start );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 8, const_str_plain_j_stop ); Py_INCREF( const_str_plain_j_stop );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 9, const_str_plain_j_stride ); Py_INCREF( const_str_plain_j_stride );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 10, const_str_plain_newdok ); Py_INCREF( const_str_plain_newdok );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 11, const_str_plain_ii ); Py_INCREF( const_str_plain_ii );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 12, const_str_plain_jj ); Py_INCREF( const_str_plain_jj );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 13, const_str_plain_a ); Py_INCREF( const_str_plain_a );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 14, const_str_plain_ra ); Py_INCREF( const_str_plain_ra );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 15, const_str_plain_b ); Py_INCREF( const_str_plain_b );
PyTuple_SET_ITEM( const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 16, const_str_plain_rb ); Py_INCREF( const_str_plain_rb );
const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple = PyTuple_New( 11 );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 1, const_str_plain_other ); Py_INCREF( const_str_plain_other );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 2, const_str_plain_res_dtype ); Py_INCREF( const_str_plain_res_dtype );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 3, const_str_plain_new ); Py_INCREF( const_str_plain_new );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 4, const_str_plain_M ); Py_INCREF( const_str_plain_M );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 5, const_str_plain_N ); Py_INCREF( const_str_plain_N );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 6, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 7, const_str_plain_j ); Py_INCREF( const_str_plain_j );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 8, const_str_plain_aij ); Py_INCREF( const_str_plain_aij );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 9, const_str_plain_key ); Py_INCREF( const_str_plain_key );
PyTuple_SET_ITEM( const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 10, const_str_plain_csc ); Py_INCREF( const_str_plain_csc );
const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple = PyTuple_New( 9 );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 0, const_str_plain_isdense ); Py_INCREF( const_str_plain_isdense );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 1, const_str_plain_getdtype ); Py_INCREF( const_str_plain_getdtype );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 2, const_str_plain_isshape ); Py_INCREF( const_str_plain_isshape );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 3, const_str_plain_isintlike ); Py_INCREF( const_str_plain_isintlike );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 4, const_str_plain_isscalarlike ); Py_INCREF( const_str_plain_isscalarlike );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 5, const_str_plain_upcast ); Py_INCREF( const_str_plain_upcast );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 6, const_str_plain_upcast_scalar ); Py_INCREF( const_str_plain_upcast_scalar );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 7, const_str_plain_IndexMixin ); Py_INCREF( const_str_plain_IndexMixin );
PyTuple_SET_ITEM( const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, 8, const_str_plain_get_index_dtype ); Py_INCREF( const_str_plain_get_index_dtype );
const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple = PyTuple_New( 8 );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 1, const_str_plain_shape ); Py_INCREF( const_str_plain_shape );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 2, const_str_plain_newM ); Py_INCREF( const_str_plain_newM );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 3, const_str_plain_newN ); Py_INCREF( const_str_plain_newN );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 4, const_str_plain_M ); Py_INCREF( const_str_plain_M );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 5, const_str_plain_N ); Py_INCREF( const_str_plain_N );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 6, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 7, const_str_plain_j ); Py_INCREF( const_str_plain_j );
const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple = PyTuple_New( 9 );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 1, const_str_plain_arg1 ); Py_INCREF( const_str_plain_arg1 );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 2, const_str_plain_shape ); Py_INCREF( const_str_plain_shape );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 3, const_str_plain_dtype ); Py_INCREF( const_str_plain_dtype );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 4, const_str_plain_copy ); Py_INCREF( const_str_plain_copy );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 5, const_str_plain_M ); Py_INCREF( const_str_plain_M );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 6, const_str_plain_N ); Py_INCREF( const_str_plain_N );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 7, const_str_plain_coo_matrix ); Py_INCREF( const_str_plain_coo_matrix );
PyTuple_SET_ITEM( const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 8, const_str_plain_d ); Py_INCREF( const_str_plain_d );
const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple = PyTuple_New( 10 );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 1, const_str_plain_other ); Py_INCREF( const_str_plain_other );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 2, const_str_plain_new ); Py_INCREF( const_str_plain_new );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 3, const_str_plain_M ); Py_INCREF( const_str_plain_M );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 4, const_str_plain_N ); Py_INCREF( const_str_plain_N );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 5, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 6, const_str_plain_j ); Py_INCREF( const_str_plain_j );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 7, const_str_plain_aij ); Py_INCREF( const_str_plain_aij );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 8, const_str_plain_key ); Py_INCREF( const_str_plain_key );
PyTuple_SET_ITEM( const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 9, const_str_plain_csc ); Py_INCREF( const_str_plain_csc );
const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple = PyTuple_New( 5 );
PyTuple_SET_ITEM( const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple, 1, const_str_plain_key ); Py_INCREF( const_str_plain_key );
PyTuple_SET_ITEM( const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple, 2, const_str_plain_default ); Py_INCREF( const_str_plain_default );
PyTuple_SET_ITEM( const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple, 3, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple, 4, const_str_plain_j ); Py_INCREF( const_str_plain_j );
const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple = PyTuple_New( 11 );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 1, const_str_plain_index ); Py_INCREF( const_str_plain_index );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 2, const_str_plain_x ); Py_INCREF( const_str_plain_x );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 3, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 4, const_str_plain_j ); Py_INCREF( const_str_plain_j );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 5, const_str_plain_v ); Py_INCREF( const_str_plain_v );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 6, const_str_plain__ ); Py_INCREF( const_str_plain__ );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 7, const_str_plain_min_i ); Py_INCREF( const_str_plain_min_i );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 8, const_str_plain_min_j ); Py_INCREF( const_str_plain_min_j );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 9, const_str_plain_zeroes ); Py_INCREF( const_str_plain_zeroes );
PyTuple_SET_ITEM( const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 10, const_str_plain_key ); Py_INCREF( const_str_plain_key );
const_tuple_str_plain_self_str_plain_new_str_plain_key_tuple = PyTuple_New( 3 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_new_str_plain_key_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_new_str_plain_key_tuple, 1, const_str_plain_new ); Py_INCREF( const_str_plain_new );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_new_str_plain_key_tuple, 2, const_str_plain_key ); Py_INCREF( const_str_plain_key );
const_list_str_plain_dok_matrix_str_plain_isspmatrix_dok_list = PyList_New( 2 );
PyList_SET_ITEM( const_list_str_plain_dok_matrix_str_plain_isspmatrix_dok_list, 0, const_str_plain_dok_matrix ); Py_INCREF( const_str_plain_dok_matrix );
PyList_SET_ITEM( const_list_str_plain_dok_matrix_str_plain_isspmatrix_dok_list, 1, const_str_plain_isspmatrix_dok ); Py_INCREF( const_str_plain_isspmatrix_dok );
const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple = PyTuple_New( 4 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple, 1, const_str_plain_i ); Py_INCREF( const_str_plain_i );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple, 2, const_str_plain_out ); Py_INCREF( const_str_plain_out );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple, 3, const_str_plain_j ); Py_INCREF( const_str_plain_j );
const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple = PyTuple_New( 4 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple, 1, const_str_plain_j ); Py_INCREF( const_str_plain_j );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple, 2, const_str_plain_out ); Py_INCREF( const_str_plain_out );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple, 3, const_str_plain_i ); Py_INCREF( const_str_plain_i );
const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple = PyTuple_New( 4 );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple, 0, const_str_plain_self ); Py_INCREF( const_str_plain_self );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple, 1, const_str_plain_other ); Py_INCREF( const_str_plain_other );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple, 2, const_str_plain_key ); Py_INCREF( const_str_plain_key );
PyTuple_SET_ITEM( const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple, 3, const_str_plain_val ); Py_INCREF( const_str_plain_val );
}
// The module code objects.
static PyCodeObject *codeobj_90d1a15673486a21f212bed95abe5556;
static PyCodeObject *codeobj_f59b2f8c112dd436d44e809cfb0e0afc;
static PyCodeObject *codeobj_e0426a7c6d1c7da2cfc752018ad04420;
static PyCodeObject *codeobj_ea55212826cd7e228ca59aee410ccf6e;
static PyCodeObject *codeobj_6e93982d14f0c99d056ea8194f80022d;
static PyCodeObject *codeobj_b3f9bf44c07763aeab49c3309fef219c;
static PyCodeObject *codeobj_6604c5dcdc3b4365d4f6e9831e673956;
static PyCodeObject *codeobj_317b5d54d014855b79d57d9950099570;
static PyCodeObject *codeobj_b75db694b0194d2f30ab7e7ebf5f0d49;
static PyCodeObject *codeobj_6d646029574dfc3c48b55d933a454b63;
static PyCodeObject *codeobj_2ad7d93d45724e1ac94700f4a03e35f4;
static PyCodeObject *codeobj_f8dda98ccca5acb4971564e026cab97e;
static PyCodeObject *codeobj_afcfe2c037793a08eef4cb198c8e2c3b;
static PyCodeObject *codeobj_18e2900c3b453c389fbddcddd807779d;
static PyCodeObject *codeobj_7482b8942712e32cfeb73694be9bd695;
static PyCodeObject *codeobj_d52d68a23d0d0e26816fc437e7073518;
static PyCodeObject *codeobj_d7447b04e4d4f290e9e5bceb91d3696a;
static PyCodeObject *codeobj_82c33e9a01ae05dc87ff874d87a21106;
static PyCodeObject *codeobj_f157eec77b38a023b68511a1a036dc92;
static PyCodeObject *codeobj_ea65d00e50b8d46c470c63b6eb27603d;
static PyCodeObject *codeobj_a3a6ebb1e23776d878d3f27b4b095f54;
static PyCodeObject *codeobj_788633ca8ecf7ae6b92dade6ba384192;
static PyCodeObject *codeobj_b3446483daf7b94985525685fb65b5d1;
static PyCodeObject *codeobj_137a87d207db1afc6e1c45d733f510e1;
static PyCodeObject *codeobj_85f9f4dcc8ba23f158319064deb2cfbc;
static PyCodeObject *codeobj_5c436145cb8a13a9ea437958c88bdaf5;
static PyCodeObject *codeobj_da334463ae7331b49e75bf8b27b1093a;
static PyCodeObject *codeobj_f28dbc413200be909312c72a33d70d02;
static PyCodeObject *codeobj_d0c208eb65a49be7b318b20965a57c24;
static PyCodeObject *codeobj_7596d40b7dddb052eca82413c884429f;
static PyCodeObject *codeobj_b97109eff028445470981edf52d80453;
static PyCodeObject *codeobj_3c4f03c717179172b570db43de816852;
static PyCodeObject *codeobj_5c2cacf0590e83195e832f86f0d6392e;
static PyCodeObject *codeobj_73e984201e3f4d06ad4f414c492b6346;
static PyCodeObject *codeobj_1d4a7c11cc20ddbec03269294b93d717;
static PyCodeObject *codeobj_74759e04a487f277cb853057ca9b6204;
static PyCodeObject *codeobj_82666dea559c8df6db5460a88430b1c3;
static PyCodeObject *codeobj_b614563072491fa7b91e7ef4222be204;
static PyCodeObject *codeobj_94bbc4000e17852e0af595ae11ff0168;
static PyCodeObject *codeobj_6b166c07b1f8c4ec8359fbea53d55f26;
static PyCodeObject *codeobj_6019cdbc92007bf9e35e89c516489b4c;
static PyCodeObject *codeobj_fa5e8ce5b294d03031535c035b2a3823;
static PyCodeObject *codeobj_666ca47b25fbb57775d31c9e6e3f02cd;
static PyCodeObject *codeobj_9377ec7bcf458b9e27121dc1fe5ae8f3;
static PyCodeObject *codeobj_d431774087130e29839d3a5b6ea640f5;
static PyCodeObject *codeobj_9a6d0cd15e4168f1427e48ca14ee3ae1;
static PyCodeObject *codeobj_a8f80bb4d58dec01408f5b4a066b24eb;
static PyCodeObject *codeobj_531dba2787dca289c66b168dae53a067;
static PyCodeObject *codeobj_deba1363caa37e177e267f68fa498919;
static PyCodeObject *codeobj_48551c06b9cd28c7e20ae32227aaaccd;
static PyCodeObject *codeobj_39ed14bcef9fbbc1e42c49304224da75;
static PyCodeObject *codeobj_8748d495ab19dc5a5a054b06e9676bdd;
static PyCodeObject *codeobj_e3810863f4fd84d16bd7d4d28a027b78;
static PyCodeObject *codeobj_354d16e2eb9fd92b3a4a39018cfe374a;
static void _initModuleCodeObjects(void)
{
codeobj_90d1a15673486a21f212bed95abe5556 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___add__, 283, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_f59b2f8c112dd436d44e809cfb0e0afc = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___add__, 283, const_tuple_9d2d2d26afa566b0ba44679a7b549160_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_e0426a7c6d1c7da2cfc752018ad04420 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___getitem__, 134, const_tuple_str_plain_self_str_plain_index_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_ea55212826cd7e228ca59aee410ccf6e = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___getitem__, 134, const_tuple_6c6be1835af082c320583f446b83dac7_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_6e93982d14f0c99d056ea8194f80022d = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___imul__, 372, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_b3f9bf44c07763aeab49c3309fef219c = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___imul__, 372, const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_6604c5dcdc3b4365d4f6e9831e673956 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___init__, 79, const_tuple_d704faac1fc14ae3111e98e63b29e8d3_tuple, 5, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_317b5d54d014855b79d57d9950099570 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___init__, 79, const_tuple_c2bc7a1f47da04cece3e33b037b6b2c0_tuple, 5, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_b75db694b0194d2f30ab7e7ebf5f0d49 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___itruediv__, 394, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_6d646029574dfc3c48b55d933a454b63 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___itruediv__, 394, const_tuple_str_plain_self_str_plain_other_str_plain_key_str_plain_val_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_2ad7d93d45724e1ac94700f4a03e35f4 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___len__, 118, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_f8dda98ccca5acb4971564e026cab97e = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___neg__, 342, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_afcfe2c037793a08eef4cb198c8e2c3b = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___neg__, 342, const_tuple_str_plain_self_str_plain_new_str_plain_key_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_18e2900c3b453c389fbddcddd807779d = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___radd__, 315, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_7482b8942712e32cfeb73694be9bd695 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___radd__, 315, const_tuple_d5506df55e4547006c7bcd1ab63270a1_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_d52d68a23d0d0e26816fc437e7073518 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___setitem__, 231, const_tuple_str_plain_self_str_plain_index_str_plain_x_tuple, 3, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_d7447b04e4d4f290e9e5bceb91d3696a = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___setitem__, 231, const_tuple_f5780932d49d60b1e232d0a4ce1f23c8_tuple, 3, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_82c33e9a01ae05dc87ff874d87a21106 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___truediv__, 382, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_f157eec77b38a023b68511a1a036dc92 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain___truediv__, 382, const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_ea65d00e50b8d46c470c63b6eb27603d = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__getitem_ranges, 209, const_tuple_7049a25c1fd2ac9c1a8eae51867a1a33_tuple, 4, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_a3a6ebb1e23776d878d3f27b4b095f54 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__getitem_ranges, 209, const_tuple_8884678cae9686955e9f4dbf92cf3d4d_tuple, 4, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_788633ca8ecf7ae6b92dade6ba384192 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__is_sequence, 24, const_tuple_str_plain_x_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_b3446483daf7b94985525685fb65b5d1 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__list, 495, const_tuple_str_plain_x_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_137a87d207db1afc6e1c45d733f510e1 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__mul_multivector, 363, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_85f9f4dcc8ba23f158319064deb2cfbc = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__mul_multivector, 363, const_tuple_40e7ccb185b0909a3db9d4298a8258f1_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_5c436145cb8a13a9ea437958c88bdaf5 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__mul_scalar, 348, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_da334463ae7331b49e75bf8b27b1093a = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__mul_scalar, 348, const_tuple_17d3c37b75323993673489dca8bcab85_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_f28dbc413200be909312c72a33d70d02 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__mul_vector, 356, const_tuple_str_plain_self_str_plain_other_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_d0c208eb65a49be7b318b20965a57c24 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__mul_vector, 356, const_tuple_0fc234e186353356e16606afc0a33abe_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_7596d40b7dddb052eca82413c884429f = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain__prod, 506, const_tuple_str_plain_x_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_b97109eff028445470981edf52d80453 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_conjtransp, 416, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_3c4f03c717179172b570db43de816852 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_conjtransp, 416, const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_5c2cacf0590e83195e832f86f0d6392e = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_copy, 425, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_73e984201e3f4d06ad4f414c492b6346 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_copy, 425, const_tuple_str_plain_self_str_plain_new_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_1d4a7c11cc20ddbec03269294b93d717 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_dok, 0, const_tuple_empty, 0, CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_74759e04a487f277cb853057ca9b6204 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_dok_matrix, 29, const_tuple_empty, 0, CO_NEWLOCALS | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_82666dea559c8df6db5460a88430b1c3 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_get, 121, const_tuple_str_plain_self_str_plain_key_str_plain_default_tuple, 3, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_b614563072491fa7b91e7ef4222be204 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_get, 121, const_tuple_f00e9ef3b71483971a27d8f6d615705a_tuple, 3, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_94bbc4000e17852e0af595ae11ff0168 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_getcol, 439, const_tuple_str_plain_self_str_plain_j_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_6b166c07b1f8c4ec8359fbea53d55f26 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_getcol, 439, const_tuple_str_plain_self_str_plain_j_str_plain_out_str_plain_i_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_6019cdbc92007bf9e35e89c516489b4c = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_getnnz, 114, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_fa5e8ce5b294d03031535c035b2a3823 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_getrow, 430, const_tuple_str_plain_self_str_plain_i_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_666ca47b25fbb57775d31c9e6e3f02cd = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_getrow, 430, const_tuple_str_plain_self_str_plain_i_str_plain_out_str_plain_j_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_9377ec7bcf458b9e27121dc1fe5ae8f3 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_isspmatrix_dok, 502, const_tuple_str_plain_x_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_d431774087130e29839d3a5b6ea640f5 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_resize, 477, const_tuple_str_plain_self_str_plain_shape_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_9a6d0cd15e4168f1427e48ca14ee3ae1 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_resize, 477, const_tuple_c1a586e4023258b1ee19bed9d623cda3_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_a8f80bb4d58dec01408f5b4a066b24eb = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_toarray, 473, const_tuple_str_plain_self_str_plain_order_str_plain_out_tuple, 3, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_531dba2787dca289c66b168dae53a067 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_tocoo, 448, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_deba1363caa37e177e267f68fa498919 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_tocoo, 448, const_tuple_106124e77a5c3d3d511af369eca401e0_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_48551c06b9cd28c7e20ae32227aaaccd = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_tocsc, 469, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_39ed14bcef9fbbc1e42c49304224da75 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_tocsr, 465, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_8748d495ab19dc5a5a054b06e9676bdd = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_todok, 459, const_tuple_str_plain_self_str_plain_copy_tuple, 2, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_e3810863f4fd84d16bd7d4d28a027b78 = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_transpose, 407, const_tuple_str_plain_self_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
codeobj_354d16e2eb9fd92b3a4a39018cfe374a = MAKE_CODEOBJ( const_str_digest_139214c1a344ec0235eb4f1d99a71a4b, const_str_plain_transpose, 407, const_tuple_2e02b34b2bd6a9277df588ad967c7f0c_tuple, 1, CO_NEWLOCALS | CO_OPTIMIZED | CO_NOFREE | CO_FUTURE_DIVISION | CO_FUTURE_ABSOLUTE_IMPORT | CO_FUTURE_PRINT_FUNCTION );
}
// The module function declarations.
NUITKA_LOCAL_MODULE PyObject *impl_class_2_dok_matrix_of_module_scipy$sparse$dok( );
NUITKA_CROSS_MODULE PyObject *impl_function_3_complex_call_helper_star_list_of_module___internal__( PyObject *_python_par_called, PyObject *_python_par_star_arg_list );
static PyObject *MAKE_FUNCTION_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults );
static PyObject *MAKE_FUNCTION_function_1__is_sequence_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults );
static PyObject *MAKE_FUNCTION_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults );
static PyObject *MAKE_FUNCTION_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_3__list_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults );
static PyObject *MAKE_FUNCTION_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_5__prod_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
static PyObject *MAKE_FUNCTION_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
// The module function definitions.
static PyObject *impl_function_1__is_sequence_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_x )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_x; par_x.object = _python_par_x;
PyObjectTempVariable tmp_or_1__value_1;
PyObjectTempVariable tmp_or_1__value_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_frame_locals;
PyObject *tmp_hasattr_attr_1;
PyObject *tmp_hasattr_attr_2;
PyObject *tmp_hasattr_attr_3;
PyObject *tmp_hasattr_value_1;
PyObject *tmp_hasattr_value_2;
PyObject *tmp_hasattr_value_3;
bool tmp_result;
PyObject *tmp_return_value;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_788633ca8ecf7ae6b92dade6ba384192, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_return_value = NULL;
// Tried code
tmp_hasattr_value_1 = par_x.object;
if ( tmp_hasattr_value_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 25;
goto try_finally_handler_2;
}
tmp_hasattr_attr_1 = const_str_plain___len__;
tmp_assign_source_1 = BUILTIN_HASATTR( tmp_hasattr_value_1, tmp_hasattr_attr_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 25;
goto try_finally_handler_2;
}
assert( tmp_or_1__value_2.object == NULL );
tmp_or_1__value_2.object = INCREASE_REFCOUNT( tmp_assign_source_1 );
tmp_cond_value_1 = tmp_or_1__value_2.object;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 25;
goto try_finally_handler_2;
}
if (tmp_cond_truth_1 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_return_value = tmp_or_1__value_2.object;
goto condexpr_end_1;
condexpr_false_1:;
tmp_return_value = NULL;
// Tried code
tmp_return_value = NULL;
// Tried code
tmp_result = tmp_or_1__value_2.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_2.object );
tmp_or_1__value_2.object = NULL;
}
assert( tmp_result != false );
tmp_return_value = NULL;
// Tried code
tmp_hasattr_value_2 = par_x.object;
if ( tmp_hasattr_value_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 25;
goto try_finally_handler_5;
}
tmp_hasattr_attr_2 = const_str_plain___next__;
tmp_assign_source_2 = BUILTIN_HASATTR( tmp_hasattr_value_2, tmp_hasattr_attr_2 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 25;
goto try_finally_handler_5;
}
assert( tmp_or_1__value_1.object == NULL );
tmp_or_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_2 );
tmp_cond_value_2 = tmp_or_1__value_1.object;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 25;
goto try_finally_handler_5;
}
if (tmp_cond_truth_2 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_return_value = tmp_or_1__value_1.object;
goto condexpr_end_2;
condexpr_false_2:;
tmp_return_value = NULL;
// Tried code
tmp_result = tmp_or_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_hasattr_value_3 = par_x.object;
if ( tmp_hasattr_value_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 26;
goto try_finally_handler_6;
}
tmp_hasattr_attr_3 = const_str_plain_next;
tmp_return_value = BUILTIN_HASATTR( tmp_hasattr_value_3, tmp_hasattr_attr_3 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 26;
goto try_finally_handler_6;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_5;
}
goto finally_end_1;
finally_end_1:;
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_4;
}
goto finally_end_2;
finally_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_3;
}
goto finally_end_3;
finally_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_2;
}
goto finally_end_4;
finally_end_4:;
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_1;
}
goto finally_end_5;
finally_end_5:;
Py_INCREF( tmp_return_value );
goto try_finally_handler_start_1;
try_finally_handler_start_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_2.object );
tmp_or_1__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto frame_exception_exit_1;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto frame_return_exit_1;
}
goto finally_end_6;
finally_end_6:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_x.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_x,
par_x.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_1__is_sequence_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_x = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_is_sequence() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_x == key )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_x, key ) == 1 )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_is_sequence() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_x != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_x = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_x == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_x = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_x == NULL ))
{
PyObject *values[] = { _python_par_x };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_1__is_sequence_of_module_scipy$sparse$dok( self, _python_par_x );
error_exit:;
Py_XDECREF( _python_par_x );
return NULL;
}
static PyObject *dparse_function_1__is_sequence_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_1__is_sequence_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_1__is_sequence_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
NUITKA_LOCAL_MODULE PyObject *impl_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable var___module__;
PyObjectLocalVariable var___doc__;
PyObjectLocalVariable var___init__;
PyObjectLocalVariable var_getnnz;
PyObjectLocalVariable var_nnz;
PyObjectLocalVariable var___len__;
PyObjectLocalVariable var_get;
PyObjectLocalVariable var___getitem__;
PyObjectLocalVariable var__getitem_ranges;
PyObjectLocalVariable var___setitem__;
PyObjectLocalVariable var___add__;
PyObjectLocalVariable var___radd__;
PyObjectLocalVariable var___neg__;
PyObjectLocalVariable var__mul_scalar;
PyObjectLocalVariable var__mul_vector;
PyObjectLocalVariable var__mul_multivector;
PyObjectLocalVariable var___imul__;
PyObjectLocalVariable var___truediv__;
PyObjectLocalVariable var___itruediv__;
PyObjectLocalVariable var_transpose;
PyObjectLocalVariable var_conjtransp;
PyObjectLocalVariable var_copy;
PyObjectLocalVariable var_getrow;
PyObjectLocalVariable var_getcol;
PyObjectLocalVariable var_tocoo;
PyObjectLocalVariable var_todok;
PyObjectLocalVariable var_tocsr;
PyObjectLocalVariable var_tocsc;
PyObjectLocalVariable var_toarray;
PyObjectLocalVariable var_resize;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_assign_source_25;
PyObject *tmp_assign_source_26;
PyObject *tmp_assign_source_27;
PyObject *tmp_assign_source_28;
PyObject *tmp_assign_source_29;
PyObject *tmp_assign_source_30;
PyObject *tmp_call_kw_1;
PyObject *tmp_called_1;
PyObject *tmp_defaults_1;
PyObject *tmp_defaults_2;
PyObject *tmp_defaults_3;
PyObject *tmp_defaults_4;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
tmp_return_value = NULL;
// Actual function code.
tmp_assign_source_1 = const_str_digest_1d6d23d7fe83d06c5414199a84edcf10;
assert( var___module__.object == NULL );
var___module__.object = INCREASE_REFCOUNT( tmp_assign_source_1 );
tmp_assign_source_2 = const_str_digest_584c45a5d1d01dadf64f020c94d12a25;
assert( var___doc__.object == NULL );
var___doc__.object = INCREASE_REFCOUNT( tmp_assign_source_2 );
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_74759e04a487f277cb853057ca9b6204, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_defaults_1 = const_tuple_none_none_false_tuple;
tmp_assign_source_3 = MAKE_FUNCTION_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( INCREASE_REFCOUNT( tmp_defaults_1 ) );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_3 );
frame_function->f_lineno = 79;
goto frame_exception_exit_1;
}
assert( var___init__.object == NULL );
var___init__.object = tmp_assign_source_3;
tmp_assign_source_4 = MAKE_FUNCTION_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_4 );
frame_function->f_lineno = 114;
goto frame_exception_exit_1;
}
assert( var_getnnz.object == NULL );
var_getnnz.object = tmp_assign_source_4;
tmp_called_1 = LOOKUP_BUILTIN( const_str_plain_property );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 116;
goto frame_exception_exit_1;
}
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_dict_value_1 = var_getnnz.object;
tmp_dict_key_1 = const_str_plain_fget;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
frame_function->f_lineno = 116;
tmp_assign_source_5 = CALL_FUNCTION_WITH_KEYARGS( tmp_called_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 116;
goto frame_exception_exit_1;
}
assert( var_nnz.object == NULL );
var_nnz.object = tmp_assign_source_5;
tmp_assign_source_6 = MAKE_FUNCTION_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_6 );
frame_function->f_lineno = 118;
goto frame_exception_exit_1;
}
assert( var___len__.object == NULL );
var___len__.object = tmp_assign_source_6;
tmp_defaults_2 = const_tuple_float_0_0_tuple;
tmp_assign_source_7 = MAKE_FUNCTION_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( INCREASE_REFCOUNT( tmp_defaults_2 ) );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_7 );
frame_function->f_lineno = 121;
goto frame_exception_exit_1;
}
assert( var_get.object == NULL );
var_get.object = tmp_assign_source_7;
tmp_assign_source_8 = MAKE_FUNCTION_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_8 );
frame_function->f_lineno = 134;
goto frame_exception_exit_1;
}
assert( var___getitem__.object == NULL );
var___getitem__.object = tmp_assign_source_8;
tmp_assign_source_9 = MAKE_FUNCTION_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_9 );
frame_function->f_lineno = 209;
goto frame_exception_exit_1;
}
assert( var__getitem_ranges.object == NULL );
var__getitem_ranges.object = tmp_assign_source_9;
tmp_assign_source_10 = MAKE_FUNCTION_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_10 );
frame_function->f_lineno = 231;
goto frame_exception_exit_1;
}
assert( var___setitem__.object == NULL );
var___setitem__.object = tmp_assign_source_10;
tmp_assign_source_11 = MAKE_FUNCTION_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_11 );
frame_function->f_lineno = 283;
goto frame_exception_exit_1;
}
assert( var___add__.object == NULL );
var___add__.object = tmp_assign_source_11;
tmp_assign_source_12 = MAKE_FUNCTION_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_12 );
frame_function->f_lineno = 315;
goto frame_exception_exit_1;
}
assert( var___radd__.object == NULL );
var___radd__.object = tmp_assign_source_12;
tmp_assign_source_13 = MAKE_FUNCTION_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_13 );
frame_function->f_lineno = 342;
goto frame_exception_exit_1;
}
assert( var___neg__.object == NULL );
var___neg__.object = tmp_assign_source_13;
tmp_assign_source_14 = MAKE_FUNCTION_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_14 );
frame_function->f_lineno = 348;
goto frame_exception_exit_1;
}
assert( var__mul_scalar.object == NULL );
var__mul_scalar.object = tmp_assign_source_14;
tmp_assign_source_15 = MAKE_FUNCTION_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_15 );
frame_function->f_lineno = 356;
goto frame_exception_exit_1;
}
assert( var__mul_vector.object == NULL );
var__mul_vector.object = tmp_assign_source_15;
tmp_assign_source_16 = MAKE_FUNCTION_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_16 );
frame_function->f_lineno = 363;
goto frame_exception_exit_1;
}
assert( var__mul_multivector.object == NULL );
var__mul_multivector.object = tmp_assign_source_16;
tmp_assign_source_17 = MAKE_FUNCTION_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_17 );
frame_function->f_lineno = 372;
goto frame_exception_exit_1;
}
assert( var___imul__.object == NULL );
var___imul__.object = tmp_assign_source_17;
tmp_assign_source_18 = MAKE_FUNCTION_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_18 );
frame_function->f_lineno = 382;
goto frame_exception_exit_1;
}
assert( var___truediv__.object == NULL );
var___truediv__.object = tmp_assign_source_18;
tmp_assign_source_19 = MAKE_FUNCTION_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_19 );
frame_function->f_lineno = 394;
goto frame_exception_exit_1;
}
assert( var___itruediv__.object == NULL );
var___itruediv__.object = tmp_assign_source_19;
tmp_assign_source_20 = MAKE_FUNCTION_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_20 );
frame_function->f_lineno = 407;
goto frame_exception_exit_1;
}
assert( var_transpose.object == NULL );
var_transpose.object = tmp_assign_source_20;
tmp_assign_source_21 = MAKE_FUNCTION_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_21 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_21 );
frame_function->f_lineno = 416;
goto frame_exception_exit_1;
}
assert( var_conjtransp.object == NULL );
var_conjtransp.object = tmp_assign_source_21;
tmp_assign_source_22 = MAKE_FUNCTION_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_22 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_22 );
frame_function->f_lineno = 425;
goto frame_exception_exit_1;
}
assert( var_copy.object == NULL );
var_copy.object = tmp_assign_source_22;
tmp_assign_source_23 = MAKE_FUNCTION_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_23 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_23 );
frame_function->f_lineno = 430;
goto frame_exception_exit_1;
}
assert( var_getrow.object == NULL );
var_getrow.object = tmp_assign_source_23;
tmp_assign_source_24 = MAKE_FUNCTION_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_24 );
frame_function->f_lineno = 439;
goto frame_exception_exit_1;
}
assert( var_getcol.object == NULL );
var_getcol.object = tmp_assign_source_24;
tmp_assign_source_25 = MAKE_FUNCTION_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_25 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_25 );
frame_function->f_lineno = 448;
goto frame_exception_exit_1;
}
assert( var_tocoo.object == NULL );
var_tocoo.object = tmp_assign_source_25;
tmp_defaults_3 = const_tuple_false_tuple;
tmp_assign_source_26 = MAKE_FUNCTION_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( INCREASE_REFCOUNT( tmp_defaults_3 ) );
if ( tmp_assign_source_26 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_26 );
frame_function->f_lineno = 459;
goto frame_exception_exit_1;
}
assert( var_todok.object == NULL );
var_todok.object = tmp_assign_source_26;
tmp_assign_source_27 = MAKE_FUNCTION_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_27 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_27 );
frame_function->f_lineno = 465;
goto frame_exception_exit_1;
}
assert( var_tocsr.object == NULL );
var_tocsr.object = tmp_assign_source_27;
tmp_assign_source_28 = MAKE_FUNCTION_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_28 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_28 );
frame_function->f_lineno = 469;
goto frame_exception_exit_1;
}
assert( var_tocsc.object == NULL );
var_tocsc.object = tmp_assign_source_28;
tmp_defaults_4 = const_tuple_none_none_tuple;
tmp_assign_source_29 = MAKE_FUNCTION_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( INCREASE_REFCOUNT( tmp_defaults_4 ) );
if ( tmp_assign_source_29 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_29 );
frame_function->f_lineno = 473;
goto frame_exception_exit_1;
}
assert( var_toarray.object == NULL );
var_toarray.object = tmp_assign_source_29;
tmp_assign_source_30 = MAKE_FUNCTION_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_30 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_30 );
frame_function->f_lineno = 477;
goto frame_exception_exit_1;
}
assert( var_resize.object == NULL );
var_resize.object = tmp_assign_source_30;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var___module__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___module__,
var___module__.object
);
}
if ((var___doc__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___doc__,
var___doc__.object
);
}
if ((var___init__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___init__,
var___init__.object
);
}
if ((var_getnnz.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_getnnz,
var_getnnz.object
);
}
if ((var_nnz.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_nnz,
var_nnz.object
);
}
if ((var___len__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___len__,
var___len__.object
);
}
if ((var_get.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_get,
var_get.object
);
}
if ((var___getitem__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___getitem__,
var___getitem__.object
);
}
if ((var__getitem_ranges.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain__getitem_ranges,
var__getitem_ranges.object
);
}
if ((var___setitem__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___setitem__,
var___setitem__.object
);
}
if ((var___add__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___add__,
var___add__.object
);
}
if ((var___radd__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___radd__,
var___radd__.object
);
}
if ((var___neg__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___neg__,
var___neg__.object
);
}
if ((var__mul_scalar.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain__mul_scalar,
var__mul_scalar.object
);
}
if ((var__mul_vector.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain__mul_vector,
var__mul_vector.object
);
}
if ((var__mul_multivector.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain__mul_multivector,
var__mul_multivector.object
);
}
if ((var___imul__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___imul__,
var___imul__.object
);
}
if ((var___truediv__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___truediv__,
var___truediv__.object
);
}
if ((var___itruediv__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain___itruediv__,
var___itruediv__.object
);
}
if ((var_transpose.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_transpose,
var_transpose.object
);
}
if ((var_conjtransp.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_conjtransp,
var_conjtransp.object
);
}
if ((var_copy.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_copy,
var_copy.object
);
}
if ((var_getrow.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_getrow,
var_getrow.object
);
}
if ((var_getcol.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_getcol,
var_getcol.object
);
}
if ((var_tocoo.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_tocoo,
var_tocoo.object
);
}
if ((var_todok.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_todok,
var_todok.object
);
}
if ((var_tocsr.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_tocsr,
var_tocsr.object
);
}
if ((var_tocsc.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_tocsc,
var_tocsc.object
);
}
if ((var_toarray.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_toarray,
var_toarray.object
);
}
if ((var_resize.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_resize,
var_resize.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
tmp_return_value = PyDict_New();
if ((var___module__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___module__,
var___module__.object
);
}
if ((var___doc__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___doc__,
var___doc__.object
);
}
if ((var___init__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___init__,
var___init__.object
);
}
if ((var_getnnz.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_getnnz,
var_getnnz.object
);
}
if ((var_nnz.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_nnz,
var_nnz.object
);
}
if ((var___len__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___len__,
var___len__.object
);
}
if ((var_get.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_get,
var_get.object
);
}
if ((var___getitem__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___getitem__,
var___getitem__.object
);
}
if ((var__getitem_ranges.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain__getitem_ranges,
var__getitem_ranges.object
);
}
if ((var___setitem__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___setitem__,
var___setitem__.object
);
}
if ((var___add__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___add__,
var___add__.object
);
}
if ((var___radd__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___radd__,
var___radd__.object
);
}
if ((var___neg__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___neg__,
var___neg__.object
);
}
if ((var__mul_scalar.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain__mul_scalar,
var__mul_scalar.object
);
}
if ((var__mul_vector.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain__mul_vector,
var__mul_vector.object
);
}
if ((var__mul_multivector.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain__mul_multivector,
var__mul_multivector.object
);
}
if ((var___imul__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___imul__,
var___imul__.object
);
}
if ((var___truediv__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___truediv__,
var___truediv__.object
);
}
if ((var___itruediv__.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain___itruediv__,
var___itruediv__.object
);
}
if ((var_transpose.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_transpose,
var_transpose.object
);
}
if ((var_conjtransp.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_conjtransp,
var_conjtransp.object
);
}
if ((var_copy.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_copy,
var_copy.object
);
}
if ((var_getrow.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_getrow,
var_getrow.object
);
}
if ((var_getcol.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_getcol,
var_getcol.object
);
}
if ((var_tocoo.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_tocoo,
var_tocoo.object
);
}
if ((var_todok.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_todok,
var_todok.object
);
}
if ((var_tocsr.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_tocsr,
var_tocsr.object
);
}
if ((var_tocsc.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_tocsc,
var_tocsc.object
);
}
if ((var_toarray.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_toarray,
var_toarray.object
);
}
if ((var_resize.object != NULL))
{
PyDict_SetItem(
tmp_return_value,
const_str_plain_resize,
var_resize.object
);
}
goto function_return_exit;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *impl_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_arg1, PyObject *_python_par_shape, PyObject *_python_par_dtype, PyObject *_python_par_copy )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_arg1; par_arg1.object = _python_par_arg1;
PyObjectLocalVariable par_shape; par_shape.object = _python_par_shape;
PyObjectLocalVariable par_dtype; par_dtype.object = _python_par_dtype;
PyObjectLocalVariable par_copy; par_copy.object = _python_par_copy;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_coo_matrix;
PyObjectLocalVariable var_d;
PyObjectTempVariable tmp_and_1__value_1;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_and_2__value_1;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *exception_keeper_type_7;
PyObject *exception_keeper_value_7;
PyTracebackObject *exception_keeper_tb_7;
PyObject *tmp_assattr_name_1;
PyObject *tmp_assattr_name_2;
PyObject *tmp_assattr_name_3;
PyObject *tmp_assattr_name_4;
PyObject *tmp_assattr_name_5;
PyObject *tmp_assattr_name_6;
PyObject *tmp_assattr_target_1;
PyObject *tmp_assattr_target_2;
PyObject *tmp_assattr_target_3;
PyObject *tmp_assattr_target_4;
PyObject *tmp_assattr_target_5;
PyObject *tmp_assattr_target_6;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_call_arg_element_6;
PyObject *tmp_call_arg_element_7;
PyObject *tmp_call_arg_element_8;
PyObject *tmp_call_arg_element_9;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_kw_2;
PyObject *tmp_call_pos_1;
PyObject *tmp_call_pos_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_called_9;
PyObject *tmp_called_10;
PyObject *tmp_called_11;
PyObject *tmp_called_12;
PyObject *tmp_called_13;
PyObject *tmp_called_14;
int tmp_cmp_NotEq_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
int tmp_cond_truth_4;
int tmp_cond_truth_5;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_cond_value_4;
PyObject *tmp_cond_value_5;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_frame_locals;
PyObject *tmp_import_globals_1;
PyObject *tmp_import_locals_1;
PyObject *tmp_import_name_from_1;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_inst_1;
bool tmp_isnot_1;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_len_arg_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_make_exception_arg_2;
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_type_2;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_source_name_12;
PyObject *tmp_source_name_13;
PyObject *tmp_source_name_14;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_6604c5dcdc3b4365d4f6e9831e673956, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 80;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain___init__ );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 80;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_self.object;
if ( tmp_call_arg_element_1 == NULL )
{
Py_DECREF( tmp_called_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 80;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 80;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 80;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_source_name_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_spmatrix );
if (unlikely( tmp_source_name_2 == NULL ))
{
tmp_source_name_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_spmatrix );
}
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260313 ], 37, 0 );
exception_tb = NULL;
frame_function->f_lineno = 81;
goto frame_exception_exit_1;
}
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain___init__ );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 81;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = par_self.object;
if ( tmp_call_arg_element_2 == NULL )
{
Py_DECREF( tmp_called_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 81;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 81;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 );
Py_DECREF( tmp_called_2 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 81;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_getdtype );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_getdtype );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260537 ], 37, 0 );
exception_tb = NULL;
frame_function->f_lineno = 83;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = par_dtype.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 53034 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 83;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_dict_value_1 = LOOKUP_BUILTIN( const_str_plain_float );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 83;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_default;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
frame_function->f_lineno = 83;
tmp_assattr_name_1 = CALL_FUNCTION( tmp_called_3, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assattr_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 83;
goto frame_exception_exit_1;
}
tmp_assattr_target_1 = par_self.object;
if ( tmp_assattr_target_1 == NULL )
{
Py_DECREF( tmp_assattr_name_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 83;
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_1, const_str_plain_dtype, tmp_assattr_name_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assattr_name_1 );
frame_function->f_lineno = 83;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_assattr_name_1 );
// Tried code
tmp_cond_value_1 = NULL;
// Tried code
tmp_isinstance_inst_1 = par_arg1.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 84;
goto try_finally_handler_2;
}
tmp_isinstance_cls_1 = LOOKUP_BUILTIN( const_str_plain_tuple );
if ( tmp_isinstance_cls_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 84;
goto try_finally_handler_2;
}
tmp_assign_source_1 = BUILTIN_ISINSTANCE( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 84;
goto try_finally_handler_2;
}
assert( tmp_and_1__value_1.object == NULL );
tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_1 );
tmp_cond_value_2 = tmp_and_1__value_1.object;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 84;
goto try_finally_handler_2;
}
if (tmp_cond_truth_2 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_cond_value_1 = NULL;
// Tried code
tmp_result = tmp_and_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isshape );
if (unlikely( tmp_called_4 == NULL ))
{
tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isshape );
}
if ( tmp_called_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260501 ], 36, 0 );
exception_tb = NULL;
frame_function->f_lineno = 84;
goto try_finally_handler_3;
}
tmp_call_arg_element_3 = par_arg1.object;
if ( tmp_call_arg_element_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 84;
goto try_finally_handler_3;
}
frame_function->f_lineno = 84;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_3 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 84;
goto try_finally_handler_3;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_2;
}
goto finally_end_1;
finally_end_1:;
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_1 = tmp_and_1__value_1.object;
Py_INCREF( tmp_cond_value_1 );
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_1;
}
goto finally_end_2;
finally_end_2:;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 84;
goto try_finally_handler_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
// Tried code
tmp_iter_arg_1 = par_arg1.object;
if ( tmp_iter_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 85;
goto try_finally_handler_4;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 85;
goto try_finally_handler_4;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_2;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 85;
goto try_finally_handler_4;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_3;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 85;
goto try_finally_handler_4;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_4;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
tmp_assign_source_5 = tmp_tuple_unpack_1__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
tmp_assign_source_6 = tmp_tuple_unpack_1__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_1;
}
goto finally_end_3;
finally_end_3:;
tmp_assattr_name_2 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_M.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_assattr_name_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 86;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_assattr_name_2, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_N.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_assattr_name_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 71377 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 86;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_assattr_name_2, 1, tmp_tuple_element_2 );
tmp_assattr_target_2 = par_self.object;
if ( tmp_assattr_target_2 == NULL )
{
Py_DECREF( tmp_assattr_name_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 86;
goto try_finally_handler_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_2, const_str_plain_shape, tmp_assattr_name_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assattr_name_2 );
frame_function->f_lineno = 86;
goto try_finally_handler_1;
}
Py_DECREF( tmp_assattr_name_2 );
goto branch_end_1;
branch_no_1:;
tmp_called_5 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix );
if (unlikely( tmp_called_5 == NULL ))
{
tmp_called_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isspmatrix );
}
if ( tmp_called_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259965 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 87;
goto try_finally_handler_1;
}
tmp_call_arg_element_4 = par_arg1.object;
if ( tmp_call_arg_element_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 87;
goto try_finally_handler_1;
}
frame_function->f_lineno = 87;
tmp_cond_value_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_4 );
if ( tmp_cond_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 87;
goto try_finally_handler_1;
}
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_3 );
frame_function->f_lineno = 87;
goto try_finally_handler_1;
}
Py_DECREF( tmp_cond_value_3 );
if (tmp_cond_truth_3 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
// Tried code
tmp_cond_value_4 = NULL;
// Tried code
tmp_called_6 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix_dok );
if (unlikely( tmp_called_6 == NULL ))
{
tmp_called_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isspmatrix_dok );
}
if ( tmp_called_6 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 266904 ], 43, 0 );
exception_tb = NULL;
frame_function->f_lineno = 88;
goto try_finally_handler_6;
}
tmp_call_arg_element_5 = par_arg1.object;
if ( tmp_call_arg_element_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 88;
goto try_finally_handler_6;
}
frame_function->f_lineno = 88;
tmp_assign_source_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_6, tmp_call_arg_element_5 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 88;
goto try_finally_handler_6;
}
assert( tmp_and_2__value_1.object == NULL );
tmp_and_2__value_1.object = tmp_assign_source_7;
tmp_cond_value_5 = tmp_and_2__value_1.object;
tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 );
if ( tmp_cond_truth_5 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 88;
goto try_finally_handler_6;
}
if (tmp_cond_truth_5 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_cond_value_4 = NULL;
// Tried code
tmp_result = tmp_and_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_2__value_1.object );
tmp_and_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_4 = par_copy.object;
if ( tmp_cond_value_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 62933 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 88;
goto try_finally_handler_7;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_7:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_6;
}
goto finally_end_4;
finally_end_4:;
goto condexpr_end_2;
condexpr_false_2:;
tmp_cond_value_4 = tmp_and_2__value_1.object;
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_5;
}
goto finally_end_5;
finally_end_5:;
tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 );
if ( tmp_cond_truth_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 88;
goto try_finally_handler_5;
}
if (tmp_cond_truth_4 == 1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_source_name_3 = par_arg1.object;
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 89;
goto try_finally_handler_5;
}
tmp_called_7 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_copy );
if ( tmp_called_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 89;
goto try_finally_handler_5;
}
frame_function->f_lineno = 89;
tmp_assign_source_8 = CALL_FUNCTION_NO_ARGS( tmp_called_7 );
Py_DECREF( tmp_called_7 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 89;
goto try_finally_handler_5;
}
if (par_arg1.object == NULL)
{
par_arg1.object = tmp_assign_source_8;
}
else
{
PyObject *old = par_arg1.object;
par_arg1.object = tmp_assign_source_8;
Py_DECREF( old );
}
goto branch_end_3;
branch_no_3:;
tmp_source_name_4 = par_arg1.object;
if ( tmp_source_name_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 91;
goto try_finally_handler_5;
}
tmp_called_8 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_todok );
if ( tmp_called_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 91;
goto try_finally_handler_5;
}
frame_function->f_lineno = 91;
tmp_assign_source_9 = CALL_FUNCTION_NO_ARGS( tmp_called_8 );
Py_DECREF( tmp_called_8 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 91;
goto try_finally_handler_5;
}
if (par_arg1.object == NULL)
{
par_arg1.object = tmp_assign_source_9;
}
else
{
PyObject *old = par_arg1.object;
par_arg1.object = tmp_assign_source_9;
Py_DECREF( old );
}
branch_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_and_2__value_1.object );
tmp_and_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto try_finally_handler_1;
}
goto finally_end_6;
finally_end_6:;
tmp_compare_left_1 = par_dtype.object;
if ( tmp_compare_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 53034 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 93;
goto try_finally_handler_1;
}
tmp_compare_right_1 = Py_None;
tmp_isnot_1 = ( tmp_compare_left_1 != tmp_compare_right_1 );
if (tmp_isnot_1)
{
goto branch_yes_4;
}
else
{
goto branch_no_4;
}
branch_yes_4:;
tmp_source_name_5 = par_arg1.object;
if ( tmp_source_name_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 94;
goto try_finally_handler_1;
}
tmp_called_9 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_astype );
if ( tmp_called_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 94;
goto try_finally_handler_1;
}
tmp_call_arg_element_6 = par_dtype.object;
if ( tmp_call_arg_element_6 == NULL )
{
Py_DECREF( tmp_called_9 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 53034 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 94;
goto try_finally_handler_1;
}
frame_function->f_lineno = 94;
tmp_assign_source_10 = CALL_FUNCTION_WITH_ARGS1( tmp_called_9, tmp_call_arg_element_6 );
Py_DECREF( tmp_called_9 );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 94;
goto try_finally_handler_1;
}
if (par_arg1.object == NULL)
{
par_arg1.object = tmp_assign_source_10;
}
else
{
PyObject *old = par_arg1.object;
par_arg1.object = tmp_assign_source_10;
Py_DECREF( old );
}
branch_no_4:;
tmp_source_name_6 = par_self.object;
if ( tmp_source_name_6 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 96;
goto try_finally_handler_1;
}
tmp_called_10 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_update );
if ( tmp_called_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 96;
goto try_finally_handler_1;
}
tmp_call_arg_element_7 = par_arg1.object;
if ( tmp_call_arg_element_7 == NULL )
{
Py_DECREF( tmp_called_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 96;
goto try_finally_handler_1;
}
frame_function->f_lineno = 96;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_10, tmp_call_arg_element_7 );
Py_DECREF( tmp_called_10 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 96;
goto try_finally_handler_1;
}
Py_DECREF( tmp_unused );
tmp_source_name_7 = par_arg1.object;
if ( tmp_source_name_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 97;
goto try_finally_handler_1;
}
tmp_assattr_name_3 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_shape );
if ( tmp_assattr_name_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 97;
goto try_finally_handler_1;
}
tmp_assattr_target_3 = par_self.object;
if ( tmp_assattr_target_3 == NULL )
{
Py_DECREF( tmp_assattr_name_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 97;
goto try_finally_handler_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_3, const_str_plain_shape, tmp_assattr_name_3 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assattr_name_3 );
frame_function->f_lineno = 97;
goto try_finally_handler_1;
}
Py_DECREF( tmp_assattr_name_3 );
tmp_source_name_8 = par_arg1.object;
if ( tmp_source_name_8 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 98;
goto try_finally_handler_1;
}
tmp_assattr_name_4 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_dtype );
if ( tmp_assattr_name_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 98;
goto try_finally_handler_1;
}
tmp_assattr_target_4 = par_self.object;
if ( tmp_assattr_target_4 == NULL )
{
Py_DECREF( tmp_assattr_name_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 98;
goto try_finally_handler_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_4, const_str_plain_dtype, tmp_assattr_name_4 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assattr_name_4 );
frame_function->f_lineno = 98;
goto try_finally_handler_1;
}
Py_DECREF( tmp_assattr_name_4 );
goto branch_end_2;
branch_no_2:;
// Tried block of try/except
tmp_source_name_9 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_9 == NULL ))
{
tmp_source_name_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_9 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 101;
goto try_except_handler_1;
}
tmp_called_11 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_asarray );
if ( tmp_called_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 101;
goto try_except_handler_1;
}
tmp_call_arg_element_8 = par_arg1.object;
if ( tmp_call_arg_element_8 == NULL )
{
Py_DECREF( tmp_called_11 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 101;
goto try_except_handler_1;
}
frame_function->f_lineno = 101;
tmp_assign_source_11 = CALL_FUNCTION_WITH_ARGS1( tmp_called_11, tmp_call_arg_element_8 );
Py_DECREF( tmp_called_11 );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 101;
goto try_except_handler_1;
}
if (par_arg1.object == NULL)
{
par_arg1.object = tmp_assign_source_11;
}
else
{
PyObject *old = par_arg1.object;
par_arg1.object = tmp_assign_source_11;
Py_DECREF( old );
}
goto try_except_end_1;
try_except_handler_1:;
// Exception handler of try/except
// Preserve existing published exception.
PRESERVE_FRAME_EXCEPTION( frame_function );
if (exception_tb == NULL)
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function || exception_tb->tb_lineno != frame_function->f_lineno )
{
exception_tb = ADD_TRACEBACK( frame_function, exception_tb );
}
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
PUBLISH_EXCEPTION( &exception_type, &exception_value, &exception_tb );
tmp_make_exception_arg_1 = const_str_digest_dbbb6ab1d378bf4225b58198215baea8;
frame_function->f_lineno = 103;
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_TypeError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 103;
goto try_finally_handler_1;
}
exception_type = tmp_raise_type_1;
frame_function->f_lineno = 103;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_1;
try_except_end_1:;
tmp_source_name_10 = par_arg1.object;
if ( tmp_source_name_10 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 105;
goto try_finally_handler_1;
}
tmp_len_arg_1 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_shape );
if ( tmp_len_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 105;
goto try_finally_handler_1;
}
tmp_compare_left_2 = BUILTIN_LEN( tmp_len_arg_1 );
Py_DECREF( tmp_len_arg_1 );
if ( tmp_compare_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 105;
goto try_finally_handler_1;
}
tmp_compare_right_2 = const_int_pos_2;
tmp_cmp_NotEq_1 = RICH_COMPARE_BOOL_NE( tmp_compare_left_2, tmp_compare_right_2 );
if ( tmp_cmp_NotEq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_2 );
frame_function->f_lineno = 105;
goto try_finally_handler_1;
}
Py_DECREF( tmp_compare_left_2 );
if (tmp_cmp_NotEq_1 == 1)
{
goto branch_yes_5;
}
else
{
goto branch_no_5;
}
branch_yes_5:;
tmp_make_exception_arg_2 = const_str_digest_6d5335383479b296f11cdd6b5f6916ce;
frame_function->f_lineno = 106;
tmp_raise_type_2 = CALL_FUNCTION_WITH_ARGS1( PyExc_TypeError, tmp_make_exception_arg_2 );
if ( tmp_raise_type_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 106;
goto try_finally_handler_1;
}
exception_type = tmp_raise_type_2;
frame_function->f_lineno = 106;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_1;
branch_no_5:;
tmp_import_globals_1 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
tmp_import_locals_1 = PyDict_New();
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_N,
var_N.object
);
}
if ((var_coo_matrix.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_coo_matrix,
var_coo_matrix.object
);
}
if ((var_d.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_d,
var_d.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_self,
par_self.object
);
}
if ((par_arg1.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_arg1,
par_arg1.object
);
}
if ((par_shape.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_shape,
par_shape.object
);
}
if ((par_dtype.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_dtype,
par_dtype.object
);
}
if ((par_copy.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_copy,
par_copy.object
);
}
frame_function->f_lineno = 108;
tmp_import_name_from_1 = IMPORT_MODULE( const_str_plain_coo, tmp_import_globals_1, tmp_import_locals_1, const_tuple_str_plain_coo_matrix_tuple, const_int_pos_1 );
Py_DECREF( tmp_import_locals_1 );
if ( tmp_import_name_from_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 108;
goto try_finally_handler_1;
}
tmp_assign_source_12 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_coo_matrix );
Py_DECREF( tmp_import_name_from_1 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 108;
goto try_finally_handler_1;
}
assert( var_coo_matrix.object == NULL );
var_coo_matrix.object = tmp_assign_source_12;
tmp_called_13 = var_coo_matrix.object;
tmp_call_pos_2 = PyTuple_New( 1 );
tmp_tuple_element_3 = par_arg1.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 109;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_call_pos_2, 0, tmp_tuple_element_3 );
tmp_call_kw_2 = _PyDict_NewPresized( 1 );
tmp_dict_value_2 = par_dtype.object;
if ( tmp_dict_value_2 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 53034 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 109;
goto try_finally_handler_1;
}
tmp_dict_key_2 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_2, tmp_dict_key_2, tmp_dict_value_2 );
frame_function->f_lineno = 109;
tmp_source_name_11 = CALL_FUNCTION( tmp_called_13, tmp_call_pos_2, tmp_call_kw_2 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
if ( tmp_source_name_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 109;
goto try_finally_handler_1;
}
tmp_called_12 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_todok );
Py_DECREF( tmp_source_name_11 );
if ( tmp_called_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 109;
goto try_finally_handler_1;
}
frame_function->f_lineno = 109;
tmp_assign_source_13 = CALL_FUNCTION_NO_ARGS( tmp_called_12 );
Py_DECREF( tmp_called_12 );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 109;
goto try_finally_handler_1;
}
assert( var_d.object == NULL );
var_d.object = tmp_assign_source_13;
tmp_source_name_12 = par_self.object;
if ( tmp_source_name_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 110;
goto try_finally_handler_1;
}
tmp_called_14 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain_update );
if ( tmp_called_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 110;
goto try_finally_handler_1;
}
tmp_call_arg_element_9 = var_d.object;
frame_function->f_lineno = 110;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_14, tmp_call_arg_element_9 );
Py_DECREF( tmp_called_14 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 110;
goto try_finally_handler_1;
}
Py_DECREF( tmp_unused );
tmp_source_name_13 = par_arg1.object;
if ( tmp_source_name_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 75623 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 111;
goto try_finally_handler_1;
}
tmp_assattr_name_5 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain_shape );
if ( tmp_assattr_name_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 111;
goto try_finally_handler_1;
}
tmp_assattr_target_5 = par_self.object;
if ( tmp_assattr_target_5 == NULL )
{
Py_DECREF( tmp_assattr_name_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 111;
goto try_finally_handler_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_5, const_str_plain_shape, tmp_assattr_name_5 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assattr_name_5 );
frame_function->f_lineno = 111;
goto try_finally_handler_1;
}
Py_DECREF( tmp_assattr_name_5 );
tmp_source_name_14 = var_d.object;
tmp_assattr_name_6 = LOOKUP_ATTRIBUTE( tmp_source_name_14, const_str_plain_dtype );
if ( tmp_assattr_name_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 112;
goto try_finally_handler_1;
}
tmp_assattr_target_6 = par_self.object;
if ( tmp_assattr_target_6 == NULL )
{
Py_DECREF( tmp_assattr_name_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 112;
goto try_finally_handler_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_6, const_str_plain_dtype, tmp_assattr_name_6 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assattr_name_6 );
frame_function->f_lineno = 112;
goto try_finally_handler_1;
}
Py_DECREF( tmp_assattr_name_6 );
branch_end_2:;
branch_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_7 = exception_type;
exception_keeper_value_7 = exception_value;
exception_keeper_tb_7 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_7 != NULL )
{
exception_type = exception_keeper_type_7;
exception_value = exception_keeper_value_7;
exception_tb = exception_keeper_tb_7;
goto frame_exception_exit_1;
}
goto finally_end_7;
finally_end_7:;
#if 1
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 1
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_coo_matrix.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_coo_matrix,
var_coo_matrix.object
);
}
if ((var_d.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_d,
var_d.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_arg1.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_arg1,
par_arg1.object
);
}
if ((par_shape.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_shape,
par_shape.object
);
}
if ((par_dtype.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_dtype,
par_dtype.object
);
}
if ((par_copy.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_copy,
par_copy.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto function_return_exit;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_arg1 = NULL;
PyObject *_python_par_shape = NULL;
PyObject *_python_par_dtype = NULL;
PyObject *_python_par_copy = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__init__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_arg1 == key )
{
assert( _python_par_arg1 == NULL );
_python_par_arg1 = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_shape == key )
{
assert( _python_par_shape == NULL );
_python_par_shape = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_dtype == key )
{
assert( _python_par_dtype == NULL );
_python_par_dtype = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_copy == key )
{
assert( _python_par_copy == NULL );
_python_par_copy = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_arg1, key ) == 1 )
{
assert( _python_par_arg1 == NULL );
_python_par_arg1 = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_shape, key ) == 1 )
{
assert( _python_par_shape == NULL );
_python_par_shape = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_dtype, key ) == 1 )
{
assert( _python_par_dtype == NULL );
_python_par_dtype = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_copy, key ) == 1 )
{
assert( _python_par_copy == NULL );
_python_par_copy = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__init__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 5 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 5 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 5 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_arg1 != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_arg1 = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_arg1 == NULL )
{
if ( 1 + self->m_defaults_given >= 5 )
{
_python_par_arg1 = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 5 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 2 < args_given ))
{
if (unlikely( _python_par_shape != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 2 );
goto error_exit;
}
_python_par_shape = INCREASE_REFCOUNT( args[ 2 ] );
}
else if ( _python_par_shape == NULL )
{
if ( 2 + self->m_defaults_given >= 5 )
{
_python_par_shape = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 2 - 5 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 3 < args_given ))
{
if (unlikely( _python_par_dtype != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 3 );
goto error_exit;
}
_python_par_dtype = INCREASE_REFCOUNT( args[ 3 ] );
}
else if ( _python_par_dtype == NULL )
{
if ( 3 + self->m_defaults_given >= 5 )
{
_python_par_dtype = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 3 - 5 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 4 < args_given ))
{
if (unlikely( _python_par_copy != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 4 );
goto error_exit;
}
_python_par_copy = INCREASE_REFCOUNT( args[ 4 ] );
}
else if ( _python_par_copy == NULL )
{
if ( 4 + self->m_defaults_given >= 5 )
{
_python_par_copy = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 4 - 5 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_arg1 == NULL || _python_par_shape == NULL || _python_par_dtype == NULL || _python_par_copy == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_arg1, _python_par_shape, _python_par_dtype, _python_par_copy };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_arg1, _python_par_shape, _python_par_dtype, _python_par_copy );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_arg1 );
Py_XDECREF( _python_par_shape );
Py_XDECREF( _python_par_dtype );
Py_XDECREF( _python_par_copy );
return NULL;
}
static PyObject *dparse_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 5 )
{
return impl_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ), INCREASE_REFCOUNT( args[ 2 ] ), INCREASE_REFCOUNT( args[ 3 ] ), INCREASE_REFCOUNT( args[ 4 ] ) );
}
else
{
PyObject *result = fparse_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_called_1;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_6019cdbc92007bf9e35e89c516489b4c, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 115;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain___len__ );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 115;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_self.object;
if ( tmp_call_arg_element_1 == NULL )
{
Py_DECREF( tmp_called_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 115;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 115;
tmp_return_value = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 115;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "getnnz() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"getnnz() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_called_1;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_2ad7d93d45724e1ac94700f4a03e35f4, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 119;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain___len__ );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 119;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_self.object;
if ( tmp_call_arg_element_1 == NULL )
{
Py_DECREF( tmp_called_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 119;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 119;
tmp_return_value = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 119;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__len__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__len__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_key, PyObject *_python_par_default )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_key; par_key.object = _python_par_key;
PyObjectLocalVariable par_default; par_default.object = _python_par_default;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_and_1__value_1;
PyObjectTempVariable tmp_or_1__value_1;
PyObjectTempVariable tmp_or_1__value_2;
PyObjectTempVariable tmp_or_1__value_3;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *exception_keeper_type_7;
PyObject *exception_keeper_value_7;
PyTracebackObject *exception_keeper_tb_7;
PyObject *exception_keeper_type_8;
PyObject *exception_keeper_value_8;
PyTracebackObject *exception_keeper_tb_8;
PyObject *exception_keeper_type_9;
PyObject *exception_keeper_value_9;
PyTracebackObject *exception_keeper_tb_9;
PyObject *exception_keeper_type_10;
PyObject *exception_keeper_value_10;
PyTracebackObject *exception_keeper_tb_10;
PyObject *exception_keeper_type_11;
PyObject *exception_keeper_value_11;
PyTracebackObject *exception_keeper_tb_11;
PyObject *exception_keeper_type_12;
PyObject *exception_keeper_value_12;
PyTracebackObject *exception_keeper_tb_12;
PyObject *exception_keeper_type_13;
PyObject *exception_keeper_value_13;
PyTracebackObject *exception_keeper_tb_13;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_right_1;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_left_2;
PyObject *tmp_compexpr_left_3;
PyObject *tmp_compexpr_left_4;
PyObject *tmp_compexpr_right_1;
PyObject *tmp_compexpr_right_2;
PyObject *tmp_compexpr_right_3;
PyObject *tmp_compexpr_right_4;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
int tmp_cond_truth_4;
int tmp_cond_truth_5;
int tmp_cond_truth_6;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_cond_value_4;
PyObject *tmp_cond_value_5;
PyObject *tmp_cond_value_6;
int tmp_exc_match_exception_match_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_make_exception_arg_2;
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_type_2;
PyObject *tmp_raise_type_3;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
PyObject *tmp_tuple_element_1;
PyObject *tmp_unary_arg_1;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_82666dea559c8df6db5460a88430b1c3, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried block of try/except
// Tried code
tmp_iter_arg_1 = par_key.object;
if ( tmp_iter_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 126;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 126;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 126;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 126;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object;
assert( var_i.object == NULL );
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object;
assert( var_j.object == NULL );
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_except_handler_1;
}
goto finally_end_1;
finally_end_1:;
tmp_cond_value_1 = NULL;
// Tried code
tmp_unary_arg_1 = NULL;
// Tried code
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260058 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 127;
goto try_finally_handler_3;
}
tmp_call_arg_element_1 = var_i.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 127;
goto try_finally_handler_3;
}
frame_function->f_lineno = 127;
tmp_assign_source_6 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 127;
goto try_finally_handler_3;
}
assert( tmp_and_1__value_1.object == NULL );
tmp_and_1__value_1.object = tmp_assign_source_6;
tmp_cond_value_2 = tmp_and_1__value_1.object;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 127;
goto try_finally_handler_3;
}
if (tmp_cond_truth_2 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_unary_arg_1 = NULL;
// Tried code
tmp_result = tmp_and_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintlike );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260058 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 127;
goto try_finally_handler_4;
}
tmp_call_arg_element_2 = var_j.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 127;
goto try_finally_handler_4;
}
frame_function->f_lineno = 127;
tmp_unary_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 );
if ( tmp_unary_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 127;
goto try_finally_handler_4;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_3;
}
goto finally_end_2;
finally_end_2:;
goto condexpr_end_1;
condexpr_false_1:;
tmp_unary_arg_1 = tmp_and_1__value_1.object;
Py_INCREF( tmp_unary_arg_1 );
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_2;
}
goto finally_end_3;
finally_end_3:;
tmp_cond_value_1 = UNARY_OPERATION( UNARY_NOT, tmp_unary_arg_1 );
Py_DECREF( tmp_unary_arg_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 127;
goto try_finally_handler_2;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_except_handler_1;
}
goto finally_end_4;
finally_end_4:;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 127;
goto try_except_handler_1;
}
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_raise_type_1 = PyExc_AssertionError;
exception_type = INCREASE_REFCOUNT( tmp_raise_type_1 );
frame_function->f_lineno = 127;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_except_handler_1;
branch_no_1:;
goto try_except_end_1;
try_except_handler_1:;
// Exception handler of try/except
// Preserve existing published exception.
PRESERVE_FRAME_EXCEPTION( frame_function );
if (exception_tb == NULL)
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function || exception_tb->tb_lineno != frame_function->f_lineno )
{
exception_tb = ADD_TRACEBACK( frame_function, exception_tb );
}
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
PUBLISH_EXCEPTION( &exception_type, &exception_value, &exception_tb );
tmp_compare_left_1 = PyThreadState_GET()->exc_type;
tmp_compare_right_1 = PyTuple_New( 3 );
tmp_tuple_element_1 = PyExc_AssertionError;
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_compare_right_1, 0, tmp_tuple_element_1 );
tmp_tuple_element_1 = PyExc_TypeError;
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_compare_right_1, 1, tmp_tuple_element_1 );
tmp_tuple_element_1 = PyExc_ValueError;
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_compare_right_1, 2, tmp_tuple_element_1 );
tmp_exc_match_exception_match_1 = EXCEPTION_MATCH_BOOL( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_exc_match_exception_match_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_right_1 );
frame_function->f_lineno = 128;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_right_1 );
if (tmp_exc_match_exception_match_1 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_make_exception_arg_1 = const_str_digest_1e81b571699e7e4a212705e9894d78d5;
frame_function->f_lineno = 129;
tmp_raise_type_2 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 129;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_2;
frame_function->f_lineno = 129;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
goto branch_end_2;
branch_no_2:;
RERAISE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
if (exception_tb && exception_tb->tb_frame == frame_function) frame_function->f_lineno = exception_tb->tb_lineno;
goto frame_exception_exit_1;
branch_end_2:;
try_except_end_1:;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_compexpr_left_1 = var_i.object;
if ( tmp_compexpr_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 130;
goto try_finally_handler_6;
}
tmp_compexpr_right_1 = const_int_0;
tmp_assign_source_7 = RICH_COMPARE_LT( tmp_compexpr_left_1, tmp_compexpr_right_1 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_6;
}
assert( tmp_or_1__value_3.object == NULL );
tmp_or_1__value_3.object = tmp_assign_source_7;
tmp_cond_value_4 = tmp_or_1__value_3.object;
tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 );
if ( tmp_cond_truth_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_6;
}
if (tmp_cond_truth_4 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_cond_value_3 = tmp_or_1__value_3.object;
Py_INCREF( tmp_cond_value_3 );
goto condexpr_end_2;
condexpr_false_2:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_or_1__value_3.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_3.object );
tmp_or_1__value_3.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_3 = NULL;
// Tried code
tmp_compexpr_left_2 = var_i.object;
if ( tmp_compexpr_left_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 130;
goto try_finally_handler_9;
}
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 130;
goto try_finally_handler_9;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_9;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_compexpr_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_compexpr_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_9;
}
tmp_assign_source_8 = RICH_COMPARE_GE( tmp_compexpr_left_2, tmp_compexpr_right_2 );
Py_DECREF( tmp_compexpr_right_2 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_9;
}
assert( tmp_or_1__value_2.object == NULL );
tmp_or_1__value_2.object = tmp_assign_source_8;
tmp_cond_value_5 = tmp_or_1__value_2.object;
tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 );
if ( tmp_cond_truth_5 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_9;
}
if (tmp_cond_truth_5 == 1)
{
goto condexpr_true_3;
}
else
{
goto condexpr_false_3;
}
condexpr_true_3:;
tmp_cond_value_3 = tmp_or_1__value_2.object;
Py_INCREF( tmp_cond_value_3 );
goto condexpr_end_3;
condexpr_false_3:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_or_1__value_2.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_2.object );
tmp_or_1__value_2.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_3 = NULL;
// Tried code
tmp_compexpr_left_3 = var_j.object;
if ( tmp_compexpr_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 130;
goto try_finally_handler_12;
}
tmp_compexpr_right_3 = const_int_0;
tmp_assign_source_9 = RICH_COMPARE_LT( tmp_compexpr_left_3, tmp_compexpr_right_3 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_12;
}
assert( tmp_or_1__value_1.object == NULL );
tmp_or_1__value_1.object = tmp_assign_source_9;
tmp_cond_value_6 = tmp_or_1__value_1.object;
tmp_cond_truth_6 = CHECK_IF_TRUE( tmp_cond_value_6 );
if ( tmp_cond_truth_6 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_12;
}
if (tmp_cond_truth_6 == 1)
{
goto condexpr_true_4;
}
else
{
goto condexpr_false_4;
}
condexpr_true_4:;
tmp_cond_value_3 = tmp_or_1__value_1.object;
Py_INCREF( tmp_cond_value_3 );
goto condexpr_end_4;
condexpr_false_4:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_or_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_4 = var_j.object;
if ( tmp_compexpr_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 130;
goto try_finally_handler_13;
}
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 130;
goto try_finally_handler_13;
}
tmp_subscr_target_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_13;
}
tmp_subscr_subscript_2 = const_int_pos_1;
tmp_compexpr_right_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
Py_DECREF( tmp_subscr_target_2 );
if ( tmp_compexpr_right_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_13;
}
tmp_cond_value_3 = RICH_COMPARE_GE( tmp_compexpr_left_4, tmp_compexpr_right_4 );
Py_DECREF( tmp_compexpr_right_4 );
if ( tmp_cond_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 130;
goto try_finally_handler_13;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_13:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_12;
}
goto finally_end_5;
finally_end_5:;
condexpr_end_4:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_12:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto try_finally_handler_11;
}
goto finally_end_6;
finally_end_6:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_11:;
exception_keeper_type_7 = exception_type;
exception_keeper_value_7 = exception_value;
exception_keeper_tb_7 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_7 != NULL )
{
exception_type = exception_keeper_type_7;
exception_value = exception_keeper_value_7;
exception_tb = exception_keeper_tb_7;
goto try_finally_handler_10;
}
goto finally_end_7;
finally_end_7:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_10:;
exception_keeper_type_8 = exception_type;
exception_keeper_value_8 = exception_value;
exception_keeper_tb_8 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_8 != NULL )
{
exception_type = exception_keeper_type_8;
exception_value = exception_keeper_value_8;
exception_tb = exception_keeper_tb_8;
goto try_finally_handler_9;
}
goto finally_end_8;
finally_end_8:;
condexpr_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_9:;
exception_keeper_type_9 = exception_type;
exception_keeper_value_9 = exception_value;
exception_keeper_tb_9 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_9 != NULL )
{
exception_type = exception_keeper_type_9;
exception_value = exception_keeper_value_9;
exception_tb = exception_keeper_tb_9;
goto try_finally_handler_8;
}
goto finally_end_9;
finally_end_9:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_8:;
exception_keeper_type_10 = exception_type;
exception_keeper_value_10 = exception_value;
exception_keeper_tb_10 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_10 != NULL )
{
exception_type = exception_keeper_type_10;
exception_value = exception_keeper_value_10;
exception_tb = exception_keeper_tb_10;
goto try_finally_handler_7;
}
goto finally_end_10;
finally_end_10:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_7:;
exception_keeper_type_11 = exception_type;
exception_keeper_value_11 = exception_value;
exception_keeper_tb_11 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_2.object );
tmp_or_1__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_11 != NULL )
{
exception_type = exception_keeper_type_11;
exception_value = exception_keeper_value_11;
exception_tb = exception_keeper_tb_11;
goto try_finally_handler_6;
}
goto finally_end_11;
finally_end_11:;
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_12 = exception_type;
exception_keeper_value_12 = exception_value;
exception_keeper_tb_12 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_12 != NULL )
{
exception_type = exception_keeper_type_12;
exception_value = exception_keeper_value_12;
exception_tb = exception_keeper_tb_12;
goto try_finally_handler_5;
}
goto finally_end_12;
finally_end_12:;
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_3 );
frame_function->f_lineno = 130;
goto try_finally_handler_5;
}
Py_DECREF( tmp_cond_value_3 );
if (tmp_cond_truth_3 == 1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_make_exception_arg_2 = const_str_digest_25f749241d37f2e0f9fae215b567cf6f;
frame_function->f_lineno = 131;
tmp_raise_type_3 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_2 );
if ( tmp_raise_type_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 131;
goto try_finally_handler_5;
}
exception_type = tmp_raise_type_3;
frame_function->f_lineno = 131;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_5;
branch_no_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_13 = exception_type;
exception_keeper_value_13 = exception_value;
exception_keeper_tb_13 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_3.object );
tmp_or_1__value_3.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_13 != NULL )
{
exception_type = exception_keeper_type_13;
exception_value = exception_keeper_value_13;
exception_tb = exception_keeper_tb_13;
goto frame_exception_exit_1;
}
goto finally_end_13;
finally_end_13:;
tmp_source_name_3 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 132;
goto frame_exception_exit_1;
}
tmp_called_3 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_get );
if ( tmp_called_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 132;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = par_self.object;
if ( tmp_call_arg_element_3 == NULL )
{
Py_DECREF( tmp_called_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 132;
goto frame_exception_exit_1;
}
tmp_call_arg_element_4 = par_key.object;
if ( tmp_call_arg_element_4 == NULL )
{
Py_DECREF( tmp_called_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 132;
goto frame_exception_exit_1;
}
tmp_call_arg_element_5 = par_default.object;
if ( tmp_call_arg_element_5 == NULL )
{
Py_DECREF( tmp_called_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 20083 ], 53, 0 );
exception_tb = NULL;
frame_function->f_lineno = 132;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 132;
tmp_return_value = CALL_FUNCTION_WITH_ARGS3( tmp_called_3, tmp_call_arg_element_3, tmp_call_arg_element_4, tmp_call_arg_element_5 );
Py_DECREF( tmp_called_3 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 132;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 1
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 1
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 1
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
par_key.object
);
}
if ((par_default.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_default,
par_default.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_key = NULL;
PyObject *_python_par_default = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "get() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_key == key )
{
assert( _python_par_key == NULL );
_python_par_key = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_default == key )
{
assert( _python_par_default == NULL );
_python_par_default = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_key, key ) == 1 )
{
assert( _python_par_key == NULL );
_python_par_key = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_default, key ) == 1 )
{
assert( _python_par_default == NULL );
_python_par_default = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"get() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 3 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 3 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_key != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_key = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_key == NULL )
{
if ( 1 + self->m_defaults_given >= 3 )
{
_python_par_key = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 2 < args_given ))
{
if (unlikely( _python_par_default != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 2 );
goto error_exit;
}
_python_par_default = INCREASE_REFCOUNT( args[ 2 ] );
}
else if ( _python_par_default == NULL )
{
if ( 2 + self->m_defaults_given >= 3 )
{
_python_par_default = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 2 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_key == NULL || _python_par_default == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_key, _python_par_default };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_key, _python_par_default );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_key );
Py_XDECREF( _python_par_default );
return NULL;
}
static PyObject *dparse_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 3 )
{
return impl_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ), INCREASE_REFCOUNT( args[ 2 ] ) );
}
else
{
PyObject *result = fparse_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_index )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_index; par_index.object = _python_par_index;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectLocalVariable var_i_intlike;
PyObjectLocalVariable var_j_intlike;
PyObjectLocalVariable var_i_slice;
PyObjectLocalVariable var_j_slice;
PyObjectLocalVariable var_i_indices;
PyObjectLocalVariable var_j_indices;
PyObjectLocalVariable var_i_seq;
PyObjectLocalVariable var_j_seq;
PyObjectLocalVariable var_newshape;
PyObjectLocalVariable var_newsize;
PyObjectLocalVariable var_min_i;
PyObjectLocalVariable var_min_j;
PyObjectLocalVariable var_newdok;
PyObjectLocalVariable var_a;
PyObjectLocalVariable var_b;
PyObjectLocalVariable var_v;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_and_1__value_1;
PyObjectTempVariable tmp_inplace_assign_1__inplace_start;
PyObjectTempVariable tmp_inplace_assign_1__inplace_end;
PyObjectTempVariable tmp_or_1__value_1;
PyObjectTempVariable tmp_inplace_assign_2__inplace_start;
PyObjectTempVariable tmp_inplace_assign_2__inplace_end;
PyObjectTempVariable tmp_or_2__value_1;
PyObjectTempVariable tmp_or_3__value_1;
PyObjectTempVariable tmp_or_4__value_1;
PyObjectTempVariable tmp_and_2__value_1;
PyObjectTempVariable tmp_and_3__value_1;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObjectTempVariable tmp_or_5__value_1;
PyObjectTempVariable tmp_inplace_assign_3__inplace_target;
PyObjectTempVariable tmp_inplace_assign_3__inplace_subscript;
PyObjectTempVariable tmp_or_6__value_1;
PyObjectTempVariable tmp_inplace_assign_4__inplace_target;
PyObjectTempVariable tmp_inplace_assign_4__inplace_subscript;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_for_loop_2__for_iterator;
PyObjectTempVariable tmp_for_loop_2__iter_value;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *exception_keeper_type_7;
PyObject *exception_keeper_value_7;
PyTracebackObject *exception_keeper_tb_7;
PyObject *exception_keeper_type_8;
PyObject *exception_keeper_value_8;
PyTracebackObject *exception_keeper_tb_8;
PyObject *exception_keeper_type_9;
PyObject *exception_keeper_value_9;
PyTracebackObject *exception_keeper_tb_9;
PyObject *exception_keeper_type_10;
PyObject *exception_keeper_value_10;
PyTracebackObject *exception_keeper_tb_10;
PyObject *exception_keeper_type_11;
PyObject *exception_keeper_value_11;
PyTracebackObject *exception_keeper_tb_11;
PyObject *exception_keeper_type_12;
PyObject *exception_keeper_value_12;
PyTracebackObject *exception_keeper_tb_12;
PyObject *exception_keeper_type_13;
PyObject *exception_keeper_value_13;
PyTracebackObject *exception_keeper_tb_13;
PyObject *exception_keeper_type_14;
PyObject *exception_keeper_value_14;
PyTracebackObject *exception_keeper_tb_14;
PyObject *exception_keeper_type_15;
PyObject *exception_keeper_value_15;
PyTracebackObject *exception_keeper_tb_15;
PyObject *exception_keeper_type_16;
PyObject *exception_keeper_value_16;
PyTracebackObject *exception_keeper_tb_16;
PyObject *exception_keeper_type_17;
PyObject *exception_keeper_value_17;
PyTracebackObject *exception_keeper_tb_17;
PyObject *exception_keeper_type_18;
PyObject *exception_keeper_value_18;
PyTracebackObject *exception_keeper_tb_18;
PyObject *exception_keeper_type_19;
PyObject *exception_keeper_value_19;
PyTracebackObject *exception_keeper_tb_19;
PyObject *exception_keeper_type_20;
PyObject *exception_keeper_value_20;
PyTracebackObject *exception_keeper_tb_20;
PyObject *exception_keeper_type_21;
PyObject *exception_keeper_value_21;
PyTracebackObject *exception_keeper_tb_21;
PyObject *exception_keeper_type_22;
PyObject *exception_keeper_value_22;
PyTracebackObject *exception_keeper_tb_22;
PyObject *exception_keeper_type_23;
PyObject *exception_keeper_value_23;
PyTracebackObject *exception_keeper_tb_23;
PyObject *exception_keeper_type_24;
PyObject *exception_keeper_value_24;
PyTracebackObject *exception_keeper_tb_24;
PyObject *exception_keeper_type_25;
PyObject *exception_keeper_value_25;
PyTracebackObject *exception_keeper_tb_25;
PyObject *exception_keeper_type_26;
PyObject *exception_keeper_value_26;
PyTracebackObject *exception_keeper_tb_26;
PyObject *exception_keeper_type_27;
PyObject *exception_keeper_value_27;
PyTracebackObject *exception_keeper_tb_27;
PyObject *exception_keeper_type_28;
PyObject *exception_keeper_value_28;
PyTracebackObject *exception_keeper_tb_28;
PyObject *exception_keeper_type_29;
PyObject *exception_keeper_value_29;
PyTracebackObject *exception_keeper_tb_29;
PyObject *exception_keeper_type_30;
PyObject *exception_keeper_value_30;
PyTracebackObject *exception_keeper_tb_30;
PyObject *exception_keeper_type_31;
PyObject *exception_keeper_value_31;
PyTracebackObject *exception_keeper_tb_31;
PyObject *exception_keeper_type_32;
PyObject *exception_keeper_value_32;
PyTracebackObject *exception_keeper_tb_32;
PyObject *exception_keeper_type_33;
PyObject *exception_keeper_value_33;
PyTracebackObject *exception_keeper_tb_33;
PyObject *exception_keeper_type_34;
PyObject *exception_keeper_value_34;
PyTracebackObject *exception_keeper_tb_34;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscribed_2;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subscript_2;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_ass_subvalue_2;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_assign_source_25;
PyObject *tmp_assign_source_26;
PyObject *tmp_assign_source_27;
PyObject *tmp_assign_source_28;
PyObject *tmp_assign_source_29;
PyObject *tmp_assign_source_30;
PyObject *tmp_assign_source_31;
PyObject *tmp_assign_source_32;
PyObject *tmp_assign_source_33;
PyObject *tmp_assign_source_34;
PyObject *tmp_assign_source_35;
PyObject *tmp_assign_source_36;
PyObject *tmp_assign_source_37;
PyObject *tmp_assign_source_38;
PyObject *tmp_assign_source_39;
PyObject *tmp_assign_source_40;
PyObject *tmp_assign_source_41;
PyObject *tmp_assign_source_42;
PyObject *tmp_assign_source_43;
PyObject *tmp_assign_source_44;
PyObject *tmp_assign_source_45;
PyObject *tmp_assign_source_46;
PyObject *tmp_assign_source_47;
PyObject *tmp_assign_source_48;
PyObject *tmp_assign_source_49;
PyObject *tmp_assign_source_50;
PyObject *tmp_assign_source_51;
PyObject *tmp_assign_source_52;
PyObject *tmp_assign_source_53;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_left_3;
PyObject *tmp_binop_left_4;
PyObject *tmp_binop_left_5;
PyObject *tmp_binop_left_6;
PyObject *tmp_binop_left_7;
PyObject *tmp_binop_left_8;
PyObject *tmp_binop_left_9;
PyObject *tmp_binop_left_10;
PyObject *tmp_binop_left_11;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_binop_right_3;
PyObject *tmp_binop_right_4;
PyObject *tmp_binop_right_5;
PyObject *tmp_binop_right_6;
PyObject *tmp_binop_right_7;
PyObject *tmp_binop_right_8;
PyObject *tmp_binop_right_9;
PyObject *tmp_binop_right_10;
PyObject *tmp_binop_right_11;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_call_arg_element_6;
PyObject *tmp_call_arg_element_7;
PyObject *tmp_call_arg_element_8;
PyObject *tmp_call_arg_element_9;
PyObject *tmp_call_arg_element_10;
PyObject *tmp_call_arg_element_11;
PyObject *tmp_call_arg_element_12;
PyObject *tmp_call_arg_element_13;
PyObject *tmp_call_arg_element_14;
PyObject *tmp_call_arg_element_15;
PyObject *tmp_call_arg_element_16;
PyObject *tmp_call_arg_element_17;
PyObject *tmp_call_arg_element_18;
PyObject *tmp_call_arg_element_19;
PyObject *tmp_call_arg_element_20;
PyObject *tmp_call_arg_element_21;
PyObject *tmp_call_arg_element_22;
PyObject *tmp_call_arg_element_23;
PyObject *tmp_call_arg_element_24;
PyObject *tmp_call_arg_element_25;
PyObject *tmp_call_arg_element_26;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_kw_2;
PyObject *tmp_call_pos_1;
PyObject *tmp_call_pos_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_called_9;
PyObject *tmp_called_10;
PyObject *tmp_called_11;
PyObject *tmp_called_12;
PyObject *tmp_called_13;
PyObject *tmp_called_14;
PyObject *tmp_called_15;
PyObject *tmp_called_16;
PyObject *tmp_called_17;
PyObject *tmp_called_18;
PyObject *tmp_called_19;
PyObject *tmp_called_20;
PyObject *tmp_called_21;
PyObject *tmp_called_22;
PyObject *tmp_called_23;
PyObject *tmp_called_24;
PyObject *tmp_called_25;
int tmp_cmp_Eq_1;
int tmp_cmp_Lt_1;
int tmp_cmp_Lt_2;
int tmp_cmp_Lt_3;
int tmp_cmp_Lt_4;
int tmp_cmp_NotEq_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_left_3;
PyObject *tmp_compare_left_4;
PyObject *tmp_compare_left_5;
PyObject *tmp_compare_left_6;
PyObject *tmp_compare_left_7;
PyObject *tmp_compare_left_8;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
PyObject *tmp_compare_right_3;
PyObject *tmp_compare_right_4;
PyObject *tmp_compare_right_5;
PyObject *tmp_compare_right_6;
PyObject *tmp_compare_right_7;
PyObject *tmp_compare_right_8;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_left_2;
PyObject *tmp_compexpr_left_3;
PyObject *tmp_compexpr_left_4;
PyObject *tmp_compexpr_left_5;
PyObject *tmp_compexpr_left_6;
PyObject *tmp_compexpr_left_7;
PyObject *tmp_compexpr_left_8;
PyObject *tmp_compexpr_left_9;
PyObject *tmp_compexpr_left_10;
PyObject *tmp_compexpr_left_11;
PyObject *tmp_compexpr_left_12;
PyObject *tmp_compexpr_right_1;
PyObject *tmp_compexpr_right_2;
PyObject *tmp_compexpr_right_3;
PyObject *tmp_compexpr_right_4;
PyObject *tmp_compexpr_right_5;
PyObject *tmp_compexpr_right_6;
PyObject *tmp_compexpr_right_7;
PyObject *tmp_compexpr_right_8;
PyObject *tmp_compexpr_right_9;
PyObject *tmp_compexpr_right_10;
PyObject *tmp_compexpr_right_11;
PyObject *tmp_compexpr_right_12;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
int tmp_cond_truth_4;
int tmp_cond_truth_5;
int tmp_cond_truth_6;
int tmp_cond_truth_7;
int tmp_cond_truth_8;
int tmp_cond_truth_9;
int tmp_cond_truth_10;
int tmp_cond_truth_11;
int tmp_cond_truth_12;
int tmp_cond_truth_13;
int tmp_cond_truth_14;
int tmp_cond_truth_15;
int tmp_cond_truth_16;
int tmp_cond_truth_17;
int tmp_cond_truth_18;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_cond_value_4;
PyObject *tmp_cond_value_5;
PyObject *tmp_cond_value_6;
PyObject *tmp_cond_value_7;
PyObject *tmp_cond_value_8;
PyObject *tmp_cond_value_9;
PyObject *tmp_cond_value_10;
PyObject *tmp_cond_value_11;
PyObject *tmp_cond_value_12;
PyObject *tmp_cond_value_13;
PyObject *tmp_cond_value_14;
PyObject *tmp_cond_value_15;
PyObject *tmp_cond_value_16;
PyObject *tmp_cond_value_17;
PyObject *tmp_cond_value_18;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_dircall_arg1_1;
PyObject *tmp_dircall_arg1_2;
PyObject *tmp_dircall_arg2_1;
PyObject *tmp_dircall_arg2_2;
PyObject *tmp_frame_locals;
PyObject *tmp_int_arg_1;
PyObject *tmp_int_arg_2;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_cls_2;
PyObject *tmp_isinstance_inst_1;
PyObject *tmp_isinstance_inst_2;
bool tmp_isnot_1;
bool tmp_isnot_2;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_len_arg_1;
PyObject *tmp_len_arg_2;
PyObject *tmp_len_arg_3;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_make_exception_arg_2;
PyObject *tmp_make_exception_arg_3;
PyObject *tmp_make_exception_arg_4;
PyObject *tmp_next_source_1;
PyObject *tmp_next_source_2;
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_type_2;
PyObject *tmp_raise_type_3;
PyObject *tmp_raise_type_4;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_source_name_12;
PyObject *tmp_source_name_13;
PyObject *tmp_source_name_14;
PyObject *tmp_source_name_15;
PyObject *tmp_source_name_16;
PyObject *tmp_source_name_17;
PyObject *tmp_source_name_18;
PyObject *tmp_source_name_19;
PyObject *tmp_source_name_20;
PyObject *tmp_source_name_21;
PyObject *tmp_source_name_22;
PyObject *tmp_source_name_23;
PyObject *tmp_source_name_24;
PyObject *tmp_source_name_25;
PyObject *tmp_source_name_26;
PyObject *tmp_source_name_27;
PyObject *tmp_source_name_28;
PyObject *tmp_source_name_29;
PyObject *tmp_source_name_30;
PyObject *tmp_source_name_31;
PyObject *tmp_source_name_32;
PyObject *tmp_source_name_33;
PyObject *tmp_source_name_34;
PyObject *tmp_source_name_35;
PyObject *tmp_source_name_36;
PyObject *tmp_source_name_37;
PyObject *tmp_source_name_38;
PyObject *tmp_source_name_39;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_subscript_3;
PyObject *tmp_subscr_subscript_4;
PyObject *tmp_subscr_subscript_5;
PyObject *tmp_subscr_subscript_6;
PyObject *tmp_subscr_subscript_7;
PyObject *tmp_subscr_subscript_8;
PyObject *tmp_subscr_subscript_9;
PyObject *tmp_subscr_subscript_10;
PyObject *tmp_subscr_subscript_11;
PyObject *tmp_subscr_subscript_12;
PyObject *tmp_subscr_subscript_13;
PyObject *tmp_subscr_subscript_14;
PyObject *tmp_subscr_subscript_15;
PyObject *tmp_subscr_subscript_16;
PyObject *tmp_subscr_subscript_17;
PyObject *tmp_subscr_subscript_18;
PyObject *tmp_subscr_subscript_19;
PyObject *tmp_subscr_subscript_20;
PyObject *tmp_subscr_subscript_21;
PyObject *tmp_subscr_subscript_22;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_subscr_target_3;
PyObject *tmp_subscr_target_4;
PyObject *tmp_subscr_target_5;
PyObject *tmp_subscr_target_6;
PyObject *tmp_subscr_target_7;
PyObject *tmp_subscr_target_8;
PyObject *tmp_subscr_target_9;
PyObject *tmp_subscr_target_10;
PyObject *tmp_subscr_target_11;
PyObject *tmp_subscr_target_12;
PyObject *tmp_subscr_target_13;
PyObject *tmp_subscr_target_14;
PyObject *tmp_subscr_target_15;
PyObject *tmp_subscr_target_16;
PyObject *tmp_subscr_target_17;
PyObject *tmp_subscr_target_18;
PyObject *tmp_subscr_target_19;
PyObject *tmp_subscr_target_20;
PyObject *tmp_subscr_target_21;
PyObject *tmp_subscr_target_22;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
int tmp_tried_lineno_6;
int tmp_tried_lineno_7;
int tmp_tried_lineno_8;
int tmp_tried_lineno_9;
int tmp_tried_lineno_10;
int tmp_tried_lineno_11;
int tmp_tried_lineno_12;
int tmp_tried_lineno_13;
int tmp_tried_lineno_14;
int tmp_tried_lineno_15;
int tmp_tried_lineno_16;
int tmp_tried_lineno_17;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
PyObject *tmp_tuple_element_5;
PyObject *tmp_tuple_element_6;
PyObject *tmp_tuple_element_7;
PyObject *tmp_tuple_element_8;
PyObject *tmp_tuple_element_9;
PyObject *tmp_tuple_element_10;
PyObject *tmp_unary_arg_1;
PyObject *tmp_unary_arg_2;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_e0426a7c6d1c7da2cfc752018ad04420, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain__unpack_index );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
tmp_call_arg_element_1 = par_index.object;
if ( tmp_call_arg_element_1 == NULL )
{
Py_DECREF( tmp_called_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 25672 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
frame_function->f_lineno = 139;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 139;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object;
assert( var_i.object == NULL );
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object;
assert( var_j.object == NULL );
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintlike );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260058 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 141;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = var_i.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 141;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 141;
tmp_assign_source_6 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 141;
goto frame_exception_exit_1;
}
assert( var_i_intlike.object == NULL );
var_i_intlike.object = tmp_assign_source_6;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintlike );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260058 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 142;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = var_j.object;
if ( tmp_call_arg_element_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 142;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 142;
tmp_assign_source_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_3, tmp_call_arg_element_3 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 142;
goto frame_exception_exit_1;
}
assert( var_j_intlike.object == NULL );
var_j_intlike.object = tmp_assign_source_7;
// Tried code
tmp_cond_value_1 = NULL;
// Tried code
tmp_assign_source_8 = var_i_intlike.object;
assert( tmp_and_1__value_1.object == NULL );
tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_8 );
tmp_cond_value_2 = tmp_and_1__value_1.object;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 144;
goto try_finally_handler_3;
}
if (tmp_cond_truth_2 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_cond_value_1 = NULL;
// Tried code
tmp_result = tmp_and_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_1 = var_j_intlike.object;
// Re-reraise as necessary after finally was executed.
goto finally_end_2;
finally_end_2:;
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_1 = tmp_and_1__value_1.object;
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_2;
}
goto finally_end_3;
finally_end_3:;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 144;
goto try_finally_handler_2;
}
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_int_arg_1 = var_i.object;
if ( tmp_int_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 146;
goto try_finally_handler_2;
}
tmp_assign_source_9 = PyNumber_Int( tmp_int_arg_1 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 146;
goto try_finally_handler_2;
}
if (var_i.object == NULL)
{
var_i.object = tmp_assign_source_9;
}
else
{
PyObject *old = var_i.object;
var_i.object = tmp_assign_source_9;
Py_DECREF( old );
}
tmp_int_arg_2 = var_j.object;
if ( tmp_int_arg_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 147;
goto try_finally_handler_2;
}
tmp_assign_source_10 = PyNumber_Int( tmp_int_arg_2 );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 147;
goto try_finally_handler_2;
}
if (var_j.object == NULL)
{
var_j.object = tmp_assign_source_10;
}
else
{
PyObject *old = var_j.object;
var_j.object = tmp_assign_source_10;
Py_DECREF( old );
}
tmp_compare_left_1 = var_i.object;
tmp_compare_right_1 = const_int_0;
tmp_cmp_Lt_1 = RICH_COMPARE_BOOL_LT( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_Lt_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 148;
goto try_finally_handler_2;
}
if (tmp_cmp_Lt_1 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_assign_source_11 = var_i.object;
assert( tmp_inplace_assign_1__inplace_start.object == NULL );
tmp_inplace_assign_1__inplace_start.object = INCREASE_REFCOUNT( tmp_assign_source_11 );
// Tried code
tmp_binop_left_1 = tmp_inplace_assign_1__inplace_start.object;
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 149;
goto try_finally_handler_5;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 149;
goto try_finally_handler_5;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_binop_right_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_binop_right_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 149;
goto try_finally_handler_5;
}
tmp_assign_source_12 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_1, tmp_binop_right_1 );
Py_DECREF( tmp_binop_right_1 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 149;
goto try_finally_handler_5;
}
assert( tmp_inplace_assign_1__inplace_end.object == NULL );
tmp_inplace_assign_1__inplace_end.object = tmp_assign_source_12;
tmp_compare_left_2 = tmp_inplace_assign_1__inplace_start.object;
tmp_compare_right_2 = tmp_inplace_assign_1__inplace_end.object;
tmp_isnot_1 = ( tmp_compare_left_2 != tmp_compare_right_2 );
if (tmp_isnot_1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_assign_source_13 = tmp_inplace_assign_1__inplace_end.object;
assert( var_i.object != NULL );
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
Py_DECREF( old );
}
branch_no_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_1__inplace_start.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_1__inplace_start.object );
tmp_inplace_assign_1__inplace_start.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_1__inplace_end.object );
tmp_inplace_assign_1__inplace_end.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_2;
}
goto finally_end_4;
finally_end_4:;
branch_no_2:;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_compexpr_left_1 = var_i.object;
if ( tmp_compexpr_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 150;
goto try_finally_handler_7;
}
tmp_compexpr_right_1 = const_int_0;
tmp_assign_source_14 = RICH_COMPARE_LT( tmp_compexpr_left_1, tmp_compexpr_right_1 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 150;
goto try_finally_handler_7;
}
assert( tmp_or_1__value_1.object == NULL );
tmp_or_1__value_1.object = tmp_assign_source_14;
tmp_cond_value_4 = tmp_or_1__value_1.object;
tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 );
if ( tmp_cond_truth_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 150;
goto try_finally_handler_7;
}
if (tmp_cond_truth_4 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_cond_value_3 = tmp_or_1__value_1.object;
Py_INCREF( tmp_cond_value_3 );
goto condexpr_end_2;
condexpr_false_2:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_or_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_2 = var_i.object;
if ( tmp_compexpr_left_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 150;
goto try_finally_handler_8;
}
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 150;
goto try_finally_handler_8;
}
tmp_subscr_target_2 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_shape );
if ( tmp_subscr_target_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 150;
goto try_finally_handler_8;
}
tmp_subscr_subscript_2 = const_int_0;
tmp_compexpr_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
Py_DECREF( tmp_subscr_target_2 );
if ( tmp_compexpr_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 150;
goto try_finally_handler_8;
}
tmp_cond_value_3 = RICH_COMPARE_GE( tmp_compexpr_left_2, tmp_compexpr_right_2 );
Py_DECREF( tmp_compexpr_right_2 );
if ( tmp_cond_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 150;
goto try_finally_handler_8;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_8:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_7;
}
goto finally_end_5;
finally_end_5:;
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_7:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_6;
}
goto finally_end_6;
finally_end_6:;
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_3 );
frame_function->f_lineno = 150;
goto try_finally_handler_6;
}
Py_DECREF( tmp_cond_value_3 );
if (tmp_cond_truth_3 == 1)
{
goto branch_yes_4;
}
else
{
goto branch_no_4;
}
branch_yes_4:;
tmp_make_exception_arg_1 = const_str_digest_25f749241d37f2e0f9fae215b567cf6f;
frame_function->f_lineno = 151;
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 151;
goto try_finally_handler_6;
}
exception_type = tmp_raise_type_1;
frame_function->f_lineno = 151;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_6;
branch_no_4:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto try_finally_handler_2;
}
goto finally_end_7;
finally_end_7:;
tmp_compare_left_3 = var_j.object;
if ( tmp_compare_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 152;
goto try_finally_handler_2;
}
tmp_compare_right_3 = const_int_0;
tmp_cmp_Lt_2 = RICH_COMPARE_BOOL_LT( tmp_compare_left_3, tmp_compare_right_3 );
if ( tmp_cmp_Lt_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 152;
goto try_finally_handler_2;
}
if (tmp_cmp_Lt_2 == 1)
{
goto branch_yes_5;
}
else
{
goto branch_no_5;
}
branch_yes_5:;
tmp_assign_source_15 = var_j.object;
if ( tmp_assign_source_15 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 153;
goto try_finally_handler_2;
}
assert( tmp_inplace_assign_2__inplace_start.object == NULL );
tmp_inplace_assign_2__inplace_start.object = INCREASE_REFCOUNT( tmp_assign_source_15 );
// Tried code
tmp_binop_left_2 = tmp_inplace_assign_2__inplace_start.object;
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 153;
goto try_finally_handler_9;
}
tmp_subscr_target_3 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_shape );
if ( tmp_subscr_target_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 153;
goto try_finally_handler_9;
}
tmp_subscr_subscript_3 = const_int_pos_1;
tmp_binop_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 );
Py_DECREF( tmp_subscr_target_3 );
if ( tmp_binop_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 153;
goto try_finally_handler_9;
}
tmp_assign_source_16 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_right_2 );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 153;
goto try_finally_handler_9;
}
assert( tmp_inplace_assign_2__inplace_end.object == NULL );
tmp_inplace_assign_2__inplace_end.object = tmp_assign_source_16;
tmp_compare_left_4 = tmp_inplace_assign_2__inplace_start.object;
tmp_compare_right_4 = tmp_inplace_assign_2__inplace_end.object;
tmp_isnot_2 = ( tmp_compare_left_4 != tmp_compare_right_4 );
if (tmp_isnot_2)
{
goto branch_yes_6;
}
else
{
goto branch_no_6;
}
branch_yes_6:;
tmp_assign_source_17 = tmp_inplace_assign_2__inplace_end.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
Py_DECREF( old );
}
branch_no_6:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_9:;
exception_keeper_type_7 = exception_type;
exception_keeper_value_7 = exception_value;
exception_keeper_tb_7 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_2__inplace_start.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_2__inplace_start.object );
tmp_inplace_assign_2__inplace_start.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_2__inplace_end.object );
tmp_inplace_assign_2__inplace_end.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_7 != NULL )
{
exception_type = exception_keeper_type_7;
exception_value = exception_keeper_value_7;
exception_tb = exception_keeper_tb_7;
goto try_finally_handler_2;
}
goto finally_end_8;
finally_end_8:;
branch_no_5:;
// Tried code
tmp_cond_value_5 = NULL;
// Tried code
tmp_compexpr_left_3 = var_j.object;
if ( tmp_compexpr_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 154;
goto try_finally_handler_11;
}
tmp_compexpr_right_3 = const_int_0;
tmp_assign_source_18 = RICH_COMPARE_LT( tmp_compexpr_left_3, tmp_compexpr_right_3 );
if ( tmp_assign_source_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 154;
goto try_finally_handler_11;
}
assert( tmp_or_2__value_1.object == NULL );
tmp_or_2__value_1.object = tmp_assign_source_18;
tmp_cond_value_6 = tmp_or_2__value_1.object;
tmp_cond_truth_6 = CHECK_IF_TRUE( tmp_cond_value_6 );
if ( tmp_cond_truth_6 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 154;
goto try_finally_handler_11;
}
if (tmp_cond_truth_6 == 1)
{
goto condexpr_true_3;
}
else
{
goto condexpr_false_3;
}
condexpr_true_3:;
tmp_cond_value_5 = tmp_or_2__value_1.object;
Py_INCREF( tmp_cond_value_5 );
goto condexpr_end_3;
condexpr_false_3:;
tmp_cond_value_5 = NULL;
// Tried code
tmp_result = tmp_or_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_4 = var_j.object;
if ( tmp_compexpr_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 154;
goto try_finally_handler_12;
}
tmp_source_name_5 = par_self.object;
if ( tmp_source_name_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 154;
goto try_finally_handler_12;
}
tmp_subscr_target_4 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_shape );
if ( tmp_subscr_target_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 154;
goto try_finally_handler_12;
}
tmp_subscr_subscript_4 = const_int_pos_1;
tmp_compexpr_right_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_4, tmp_subscr_subscript_4 );
Py_DECREF( tmp_subscr_target_4 );
if ( tmp_compexpr_right_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 154;
goto try_finally_handler_12;
}
tmp_cond_value_5 = RICH_COMPARE_GE( tmp_compexpr_left_4, tmp_compexpr_right_4 );
Py_DECREF( tmp_compexpr_right_4 );
if ( tmp_cond_value_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 154;
goto try_finally_handler_12;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_12:;
exception_keeper_type_8 = exception_type;
exception_keeper_value_8 = exception_value;
exception_keeper_tb_8 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_8 != NULL )
{
exception_type = exception_keeper_type_8;
exception_value = exception_keeper_value_8;
exception_tb = exception_keeper_tb_8;
goto try_finally_handler_11;
}
goto finally_end_9;
finally_end_9:;
condexpr_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_11:;
exception_keeper_type_9 = exception_type;
exception_keeper_value_9 = exception_value;
exception_keeper_tb_9 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_9 != NULL )
{
exception_type = exception_keeper_type_9;
exception_value = exception_keeper_value_9;
exception_tb = exception_keeper_tb_9;
goto try_finally_handler_10;
}
goto finally_end_10;
finally_end_10:;
tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 );
if ( tmp_cond_truth_5 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_5 );
frame_function->f_lineno = 154;
goto try_finally_handler_10;
}
Py_DECREF( tmp_cond_value_5 );
if (tmp_cond_truth_5 == 1)
{
goto branch_yes_7;
}
else
{
goto branch_no_7;
}
branch_yes_7:;
tmp_make_exception_arg_2 = const_str_digest_25f749241d37f2e0f9fae215b567cf6f;
frame_function->f_lineno = 155;
tmp_raise_type_2 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_2 );
if ( tmp_raise_type_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 155;
goto try_finally_handler_10;
}
exception_type = tmp_raise_type_2;
frame_function->f_lineno = 155;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_10;
branch_no_7:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_10:;
exception_keeper_type_10 = exception_type;
exception_keeper_value_10 = exception_value;
exception_keeper_tb_10 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_10 != NULL )
{
exception_type = exception_keeper_type_10;
exception_value = exception_keeper_value_10;
exception_tb = exception_keeper_tb_10;
goto try_finally_handler_2;
}
goto finally_end_11;
finally_end_11:;
tmp_source_name_6 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 156;
goto try_finally_handler_2;
}
tmp_called_4 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_get );
if ( tmp_called_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 156;
goto try_finally_handler_2;
}
tmp_call_arg_element_4 = par_self.object;
if ( tmp_call_arg_element_4 == NULL )
{
Py_DECREF( tmp_called_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 156;
goto try_finally_handler_2;
}
tmp_call_arg_element_5 = PyTuple_New( 2 );
tmp_tuple_element_1 = var_i.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 156;
goto try_finally_handler_2;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_call_arg_element_5, 0, tmp_tuple_element_1 );
tmp_tuple_element_1 = var_j.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 156;
goto try_finally_handler_2;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_call_arg_element_5, 1, tmp_tuple_element_1 );
tmp_call_arg_element_6 = const_float_0_0;
frame_function->f_lineno = 156;
tmp_return_value = CALL_FUNCTION_WITH_ARGS3( tmp_called_4, tmp_call_arg_element_4, tmp_call_arg_element_5, tmp_call_arg_element_6 );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_5 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 156;
goto try_finally_handler_2;
}
goto try_finally_handler_start_1;
goto branch_end_1;
branch_no_1:;
// Tried code
tmp_cond_value_7 = NULL;
// Tried code
// Tried code
tmp_assign_source_19 = NULL;
// Tried code
tmp_assign_source_20 = var_i_intlike.object;
if ( tmp_assign_source_20 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 266947 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 157;
goto try_finally_handler_16;
}
assert( tmp_or_3__value_1.object == NULL );
tmp_or_3__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_20 );
tmp_cond_value_8 = tmp_or_3__value_1.object;
tmp_cond_truth_8 = CHECK_IF_TRUE( tmp_cond_value_8 );
if ( tmp_cond_truth_8 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 157;
goto try_finally_handler_16;
}
if (tmp_cond_truth_8 == 1)
{
goto condexpr_true_4;
}
else
{
goto condexpr_false_4;
}
condexpr_true_4:;
tmp_assign_source_19 = tmp_or_3__value_1.object;
goto condexpr_end_4;
condexpr_false_4:;
tmp_assign_source_19 = NULL;
// Tried code
tmp_result = tmp_or_3__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_3__value_1.object );
tmp_or_3__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_isinstance_inst_1 = var_i.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 157;
goto try_finally_handler_17;
}
tmp_isinstance_cls_1 = LOOKUP_BUILTIN( const_str_plain_slice );
if ( tmp_isinstance_cls_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 157;
goto try_finally_handler_17;
}
tmp_assign_source_19 = BUILTIN_ISINSTANCE( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_assign_source_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 157;
goto try_finally_handler_17;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_17:;
exception_keeper_type_11 = exception_type;
exception_keeper_value_11 = exception_value;
exception_keeper_tb_11 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_11 != NULL )
{
exception_type = exception_keeper_type_11;
exception_value = exception_keeper_value_11;
exception_tb = exception_keeper_tb_11;
goto try_finally_handler_16;
}
goto finally_end_12;
finally_end_12:;
condexpr_end_4:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_16:;
exception_keeper_type_12 = exception_type;
exception_keeper_value_12 = exception_value;
exception_keeper_tb_12 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_12 != NULL )
{
exception_type = exception_keeper_type_12;
exception_value = exception_keeper_value_12;
exception_tb = exception_keeper_tb_12;
goto try_finally_handler_15;
}
goto finally_end_13;
finally_end_13:;
assert( tmp_and_2__value_1.object == NULL );
tmp_and_2__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_15:;
exception_keeper_type_13 = exception_type;
exception_keeper_value_13 = exception_value;
exception_keeper_tb_13 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_6 = frame_function->f_lineno;
Py_XDECREF( tmp_or_3__value_1.object );
tmp_or_3__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_6;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_13 != NULL )
{
exception_type = exception_keeper_type_13;
exception_value = exception_keeper_value_13;
exception_tb = exception_keeper_tb_13;
goto try_finally_handler_14;
}
goto finally_end_14;
finally_end_14:;
tmp_cond_value_9 = tmp_and_2__value_1.object;
tmp_cond_truth_9 = CHECK_IF_TRUE( tmp_cond_value_9 );
if ( tmp_cond_truth_9 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 157;
goto try_finally_handler_14;
}
if (tmp_cond_truth_9 == 1)
{
goto condexpr_true_5;
}
else
{
goto condexpr_false_5;
}
condexpr_true_5:;
tmp_cond_value_7 = NULL;
// Tried code
tmp_cond_value_7 = NULL;
// Tried code
tmp_result = tmp_and_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_2__value_1.object );
tmp_and_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_7 = NULL;
// Tried code
tmp_assign_source_21 = var_j_intlike.object;
if ( tmp_assign_source_21 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267002 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 158;
goto try_finally_handler_20;
}
assert( tmp_or_4__value_1.object == NULL );
tmp_or_4__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_21 );
tmp_cond_value_10 = tmp_or_4__value_1.object;
tmp_cond_truth_10 = CHECK_IF_TRUE( tmp_cond_value_10 );
if ( tmp_cond_truth_10 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 158;
goto try_finally_handler_20;
}
if (tmp_cond_truth_10 == 1)
{
goto condexpr_true_6;
}
else
{
goto condexpr_false_6;
}
condexpr_true_6:;
tmp_cond_value_7 = tmp_or_4__value_1.object;
goto condexpr_end_6;
condexpr_false_6:;
tmp_cond_value_7 = NULL;
// Tried code
tmp_result = tmp_or_4__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_4__value_1.object );
tmp_or_4__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_isinstance_inst_2 = var_j.object;
if ( tmp_isinstance_inst_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 158;
goto try_finally_handler_21;
}
tmp_isinstance_cls_2 = LOOKUP_BUILTIN( const_str_plain_slice );
if ( tmp_isinstance_cls_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 158;
goto try_finally_handler_21;
}
tmp_cond_value_7 = BUILTIN_ISINSTANCE( tmp_isinstance_inst_2, tmp_isinstance_cls_2 );
if ( tmp_cond_value_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 158;
goto try_finally_handler_21;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_21:;
exception_keeper_type_14 = exception_type;
exception_keeper_value_14 = exception_value;
exception_keeper_tb_14 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_14 != NULL )
{
exception_type = exception_keeper_type_14;
exception_value = exception_keeper_value_14;
exception_tb = exception_keeper_tb_14;
goto try_finally_handler_20;
}
goto finally_end_15;
finally_end_15:;
condexpr_end_6:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_20:;
exception_keeper_type_15 = exception_type;
exception_keeper_value_15 = exception_value;
exception_keeper_tb_15 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_15 != NULL )
{
exception_type = exception_keeper_type_15;
exception_value = exception_keeper_value_15;
exception_tb = exception_keeper_tb_15;
goto try_finally_handler_19;
}
goto finally_end_16;
finally_end_16:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_19:;
exception_keeper_type_16 = exception_type;
exception_keeper_value_16 = exception_value;
exception_keeper_tb_16 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_16 != NULL )
{
exception_type = exception_keeper_type_16;
exception_value = exception_keeper_value_16;
exception_tb = exception_keeper_tb_16;
goto try_finally_handler_18;
}
goto finally_end_17;
finally_end_17:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_18:;
exception_keeper_type_17 = exception_type;
exception_keeper_value_17 = exception_value;
exception_keeper_tb_17 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_7 = frame_function->f_lineno;
Py_XDECREF( tmp_or_4__value_1.object );
tmp_or_4__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_7;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_17 != NULL )
{
exception_type = exception_keeper_type_17;
exception_value = exception_keeper_value_17;
exception_tb = exception_keeper_tb_17;
goto try_finally_handler_14;
}
goto finally_end_18;
finally_end_18:;
goto condexpr_end_5;
condexpr_false_5:;
tmp_cond_value_7 = tmp_and_2__value_1.object;
condexpr_end_5:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_14:;
exception_keeper_type_18 = exception_type;
exception_keeper_value_18 = exception_value;
exception_keeper_tb_18 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_18 != NULL )
{
exception_type = exception_keeper_type_18;
exception_value = exception_keeper_value_18;
exception_tb = exception_keeper_tb_18;
goto try_finally_handler_13;
}
goto finally_end_19;
finally_end_19:;
tmp_cond_truth_7 = CHECK_IF_TRUE( tmp_cond_value_7 );
if ( tmp_cond_truth_7 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 157;
goto try_finally_handler_13;
}
if (tmp_cond_truth_7 == 1)
{
goto branch_yes_8;
}
else
{
goto branch_no_8;
}
branch_yes_8:;
tmp_cond_value_11 = var_i_intlike.object;
if ( tmp_cond_value_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 266947 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
tmp_cond_truth_11 = CHECK_IF_TRUE( tmp_cond_value_11 );
if ( tmp_cond_truth_11 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
if (tmp_cond_truth_11 == 1)
{
goto condexpr_true_7;
}
else
{
goto condexpr_false_7;
}
condexpr_true_7:;
tmp_called_5 = LOOKUP_BUILTIN( const_str_plain_slice );
if ( tmp_called_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
tmp_call_arg_element_7 = var_i.object;
if ( tmp_call_arg_element_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
tmp_binop_left_3 = var_i.object;
if ( tmp_binop_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
tmp_binop_right_3 = const_int_pos_1;
tmp_call_arg_element_8 = BINARY_OPERATION_ADD( tmp_binop_left_3, tmp_binop_right_3 );
if ( tmp_call_arg_element_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
frame_function->f_lineno = 160;
tmp_assign_source_22 = CALL_FUNCTION_WITH_ARGS2( tmp_called_5, tmp_call_arg_element_7, tmp_call_arg_element_8 );
Py_DECREF( tmp_call_arg_element_8 );
if ( tmp_assign_source_22 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
goto condexpr_end_7;
condexpr_false_7:;
tmp_assign_source_22 = var_i.object;
if ( tmp_assign_source_22 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 160;
goto try_finally_handler_13;
}
Py_INCREF( tmp_assign_source_22 );
condexpr_end_7:;
assert( var_i_slice.object == NULL );
var_i_slice.object = tmp_assign_source_22;
tmp_cond_value_12 = var_j_intlike.object;
if ( tmp_cond_value_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267002 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
tmp_cond_truth_12 = CHECK_IF_TRUE( tmp_cond_value_12 );
if ( tmp_cond_truth_12 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
if (tmp_cond_truth_12 == 1)
{
goto condexpr_true_8;
}
else
{
goto condexpr_false_8;
}
condexpr_true_8:;
tmp_called_6 = LOOKUP_BUILTIN( const_str_plain_slice );
if ( tmp_called_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
tmp_call_arg_element_9 = var_j.object;
if ( tmp_call_arg_element_9 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
tmp_binop_left_4 = var_j.object;
if ( tmp_binop_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
tmp_binop_right_4 = const_int_pos_1;
tmp_call_arg_element_10 = BINARY_OPERATION_ADD( tmp_binop_left_4, tmp_binop_right_4 );
if ( tmp_call_arg_element_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
frame_function->f_lineno = 161;
tmp_assign_source_23 = CALL_FUNCTION_WITH_ARGS2( tmp_called_6, tmp_call_arg_element_9, tmp_call_arg_element_10 );
Py_DECREF( tmp_call_arg_element_10 );
if ( tmp_assign_source_23 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
goto condexpr_end_8;
condexpr_false_8:;
tmp_assign_source_23 = var_j.object;
if ( tmp_assign_source_23 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 161;
goto try_finally_handler_13;
}
Py_INCREF( tmp_assign_source_23 );
condexpr_end_8:;
assert( var_j_slice.object == NULL );
var_j_slice.object = tmp_assign_source_23;
tmp_source_name_7 = var_i_slice.object;
tmp_called_7 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_indices );
if ( tmp_called_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 162;
goto try_finally_handler_13;
}
tmp_source_name_8 = par_self.object;
if ( tmp_source_name_8 == NULL )
{
Py_DECREF( tmp_called_7 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 162;
goto try_finally_handler_13;
}
tmp_subscr_target_5 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_shape );
if ( tmp_subscr_target_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
frame_function->f_lineno = 162;
goto try_finally_handler_13;
}
tmp_subscr_subscript_5 = const_int_0;
tmp_call_arg_element_11 = LOOKUP_SUBSCRIPT( tmp_subscr_target_5, tmp_subscr_subscript_5 );
Py_DECREF( tmp_subscr_target_5 );
if ( tmp_call_arg_element_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
frame_function->f_lineno = 162;
goto try_finally_handler_13;
}
frame_function->f_lineno = 162;
tmp_assign_source_24 = CALL_FUNCTION_WITH_ARGS1( tmp_called_7, tmp_call_arg_element_11 );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_11 );
if ( tmp_assign_source_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 162;
goto try_finally_handler_13;
}
assert( var_i_indices.object == NULL );
var_i_indices.object = tmp_assign_source_24;
tmp_source_name_9 = var_j_slice.object;
tmp_called_8 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_indices );
if ( tmp_called_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 163;
goto try_finally_handler_13;
}
tmp_source_name_10 = par_self.object;
if ( tmp_source_name_10 == NULL )
{
Py_DECREF( tmp_called_8 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 163;
goto try_finally_handler_13;
}
tmp_subscr_target_6 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_shape );
if ( tmp_subscr_target_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_8 );
frame_function->f_lineno = 163;
goto try_finally_handler_13;
}
tmp_subscr_subscript_6 = const_int_pos_1;
tmp_call_arg_element_12 = LOOKUP_SUBSCRIPT( tmp_subscr_target_6, tmp_subscr_subscript_6 );
Py_DECREF( tmp_subscr_target_6 );
if ( tmp_call_arg_element_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_8 );
frame_function->f_lineno = 163;
goto try_finally_handler_13;
}
frame_function->f_lineno = 163;
tmp_assign_source_25 = CALL_FUNCTION_WITH_ARGS1( tmp_called_8, tmp_call_arg_element_12 );
Py_DECREF( tmp_called_8 );
Py_DECREF( tmp_call_arg_element_12 );
if ( tmp_assign_source_25 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 163;
goto try_finally_handler_13;
}
assert( var_j_indices.object == NULL );
var_j_indices.object = tmp_assign_source_25;
tmp_dircall_arg1_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_dircall_arg1_1 == NULL ))
{
tmp_dircall_arg1_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_dircall_arg1_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 164;
goto try_finally_handler_13;
}
tmp_dircall_arg2_1 = var_i_indices.object;
tmp_assign_source_26 = impl_function_3_complex_call_helper_star_list_of_module___internal__( INCREASE_REFCOUNT( tmp_dircall_arg1_1 ), INCREASE_REFCOUNT( tmp_dircall_arg2_1 ) );
if ( tmp_assign_source_26 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 164;
goto try_finally_handler_13;
}
assert( var_i_seq.object == NULL );
var_i_seq.object = tmp_assign_source_26;
tmp_dircall_arg1_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_dircall_arg1_2 == NULL ))
{
tmp_dircall_arg1_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_dircall_arg1_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 165;
goto try_finally_handler_13;
}
tmp_dircall_arg2_2 = var_j_indices.object;
tmp_assign_source_27 = impl_function_3_complex_call_helper_star_list_of_module___internal__( INCREASE_REFCOUNT( tmp_dircall_arg1_2 ), INCREASE_REFCOUNT( tmp_dircall_arg2_2 ) );
if ( tmp_assign_source_27 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 165;
goto try_finally_handler_13;
}
assert( var_j_seq.object == NULL );
var_j_seq.object = tmp_assign_source_27;
tmp_assign_source_28 = PyTuple_New( 2 );
tmp_len_arg_1 = var_i_seq.object;
tmp_tuple_element_2 = BUILTIN_LEN( tmp_len_arg_1 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_28 );
frame_function->f_lineno = 166;
goto try_finally_handler_13;
}
PyTuple_SET_ITEM( tmp_assign_source_28, 0, tmp_tuple_element_2 );
tmp_len_arg_2 = var_j_seq.object;
tmp_tuple_element_2 = BUILTIN_LEN( tmp_len_arg_2 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_28 );
frame_function->f_lineno = 166;
goto try_finally_handler_13;
}
PyTuple_SET_ITEM( tmp_assign_source_28, 1, tmp_tuple_element_2 );
assert( var_newshape.object == NULL );
var_newshape.object = tmp_assign_source_28;
tmp_called_9 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__prod );
if (unlikely( tmp_called_9 == NULL ))
{
tmp_called_9 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain__prod );
}
if ( tmp_called_9 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 55069 ], 34, 0 );
exception_tb = NULL;
frame_function->f_lineno = 167;
goto try_finally_handler_13;
}
tmp_call_arg_element_13 = var_newshape.object;
frame_function->f_lineno = 167;
tmp_assign_source_29 = CALL_FUNCTION_WITH_ARGS1( tmp_called_9, tmp_call_arg_element_13 );
if ( tmp_assign_source_29 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 167;
goto try_finally_handler_13;
}
assert( var_newsize.object == NULL );
var_newsize.object = tmp_assign_source_29;
// Tried code
tmp_cond_value_13 = NULL;
// Tried code
tmp_len_arg_3 = par_self.object;
if ( tmp_len_arg_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 169;
goto try_finally_handler_23;
}
tmp_compexpr_left_5 = BUILTIN_LEN( tmp_len_arg_3 );
if ( tmp_compexpr_left_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 169;
goto try_finally_handler_23;
}
tmp_binop_left_5 = const_int_pos_2;
tmp_binop_right_5 = var_newsize.object;
tmp_compexpr_right_5 = BINARY_OPERATION_MUL( tmp_binop_left_5, tmp_binop_right_5 );
if ( tmp_compexpr_right_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_5 );
frame_function->f_lineno = 169;
goto try_finally_handler_23;
}
tmp_assign_source_30 = RICH_COMPARE_LT( tmp_compexpr_left_5, tmp_compexpr_right_5 );
Py_DECREF( tmp_compexpr_left_5 );
Py_DECREF( tmp_compexpr_right_5 );
if ( tmp_assign_source_30 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 169;
goto try_finally_handler_23;
}
assert( tmp_and_3__value_1.object == NULL );
tmp_and_3__value_1.object = tmp_assign_source_30;
tmp_cond_value_14 = tmp_and_3__value_1.object;
tmp_cond_truth_14 = CHECK_IF_TRUE( tmp_cond_value_14 );
if ( tmp_cond_truth_14 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 169;
goto try_finally_handler_23;
}
if (tmp_cond_truth_14 == 1)
{
goto condexpr_true_9;
}
else
{
goto condexpr_false_9;
}
condexpr_true_9:;
tmp_cond_value_13 = NULL;
// Tried code
tmp_result = tmp_and_3__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_3__value_1.object );
tmp_and_3__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_6 = var_newsize.object;
tmp_compexpr_right_6 = const_int_0;
tmp_cond_value_13 = RICH_COMPARE_NE( tmp_compexpr_left_6, tmp_compexpr_right_6 );
if ( tmp_cond_value_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 169;
goto try_finally_handler_24;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_24:;
exception_keeper_type_19 = exception_type;
exception_keeper_value_19 = exception_value;
exception_keeper_tb_19 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_19 != NULL )
{
exception_type = exception_keeper_type_19;
exception_value = exception_keeper_value_19;
exception_tb = exception_keeper_tb_19;
goto try_finally_handler_23;
}
goto finally_end_20;
finally_end_20:;
goto condexpr_end_9;
condexpr_false_9:;
tmp_cond_value_13 = tmp_and_3__value_1.object;
Py_INCREF( tmp_cond_value_13 );
condexpr_end_9:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_23:;
exception_keeper_type_20 = exception_type;
exception_keeper_value_20 = exception_value;
exception_keeper_tb_20 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_20 != NULL )
{
exception_type = exception_keeper_type_20;
exception_value = exception_keeper_value_20;
exception_tb = exception_keeper_tb_20;
goto try_finally_handler_22;
}
goto finally_end_21;
finally_end_21:;
tmp_cond_truth_13 = CHECK_IF_TRUE( tmp_cond_value_13 );
if ( tmp_cond_truth_13 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_13 );
frame_function->f_lineno = 169;
goto try_finally_handler_22;
}
Py_DECREF( tmp_cond_value_13 );
if (tmp_cond_truth_13 == 1)
{
goto branch_yes_9;
}
else
{
goto branch_no_9;
}
branch_yes_9:;
tmp_source_name_11 = par_self.object;
if ( tmp_source_name_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 176;
goto try_finally_handler_22;
}
tmp_called_10 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain__getitem_ranges );
if ( tmp_called_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 176;
goto try_finally_handler_22;
}
tmp_call_arg_element_14 = var_i_indices.object;
if ( tmp_call_arg_element_14 == NULL )
{
Py_DECREF( tmp_called_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267057 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 176;
goto try_finally_handler_22;
}
tmp_call_arg_element_15 = var_j_indices.object;
if ( tmp_call_arg_element_15 == NULL )
{
Py_DECREF( tmp_called_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267112 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 176;
goto try_finally_handler_22;
}
tmp_call_arg_element_16 = var_newshape.object;
if ( tmp_call_arg_element_16 == NULL )
{
Py_DECREF( tmp_called_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 63229 ], 54, 0 );
exception_tb = NULL;
frame_function->f_lineno = 176;
goto try_finally_handler_22;
}
frame_function->f_lineno = 176;
tmp_return_value = CALL_FUNCTION_WITH_ARGS3( tmp_called_10, tmp_call_arg_element_14, tmp_call_arg_element_15, tmp_call_arg_element_16 );
Py_DECREF( tmp_called_10 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 176;
goto try_finally_handler_22;
}
goto try_finally_handler_start_3;
branch_no_9:;
try_finally_handler_start_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_22:;
exception_keeper_type_21 = exception_type;
exception_keeper_value_21 = exception_value;
exception_keeper_tb_21 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_8 = frame_function->f_lineno;
Py_XDECREF( tmp_and_3__value_1.object );
tmp_and_3__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_8;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_21 != NULL )
{
exception_type = exception_keeper_type_21;
exception_value = exception_keeper_value_21;
exception_tb = exception_keeper_tb_21;
goto try_finally_handler_13;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto try_finally_handler_start_2;
}
goto finally_end_22;
finally_end_22:;
branch_no_8:;
try_finally_handler_start_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_13:;
exception_keeper_type_22 = exception_type;
exception_keeper_value_22 = exception_value;
exception_keeper_tb_22 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_9 = frame_function->f_lineno;
Py_XDECREF( tmp_and_2__value_1.object );
tmp_and_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_9;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_22 != NULL )
{
exception_type = exception_keeper_type_22;
exception_value = exception_keeper_value_22;
exception_tb = exception_keeper_tb_22;
goto try_finally_handler_2;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto try_finally_handler_start_1;
}
goto finally_end_23;
finally_end_23:;
branch_end_1:;
try_finally_handler_start_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_23 = exception_type;
exception_keeper_value_23 = exception_value;
exception_keeper_tb_23 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_10 = frame_function->f_lineno;
Py_XDECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_10;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_23 != NULL )
{
exception_type = exception_keeper_type_23;
exception_value = exception_keeper_value_23;
exception_tb = exception_keeper_tb_23;
goto frame_exception_exit_1;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto frame_return_exit_1;
}
goto finally_end_24;
finally_end_24:;
// Tried code
tmp_source_name_12 = par_self.object;
if ( tmp_source_name_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
tmp_called_11 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain__index_to_arrays );
if ( tmp_called_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
tmp_call_arg_element_17 = var_i.object;
if ( tmp_call_arg_element_17 == NULL )
{
Py_DECREF( tmp_called_11 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
tmp_call_arg_element_18 = var_j.object;
if ( tmp_call_arg_element_18 == NULL )
{
Py_DECREF( tmp_called_11 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
frame_function->f_lineno = 178;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS2( tmp_called_11, tmp_call_arg_element_17, tmp_call_arg_element_18 );
Py_DECREF( tmp_called_11 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
tmp_assign_source_31 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_31 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
assert( tmp_tuple_unpack_2__source_iter.object == NULL );
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_31;
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_32 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_32 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
assert( tmp_tuple_unpack_2__element_1.object == NULL );
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_32;
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_33 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_33 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 178;
goto try_finally_handler_25;
}
assert( tmp_tuple_unpack_2__element_2.object == NULL );
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_33;
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_25;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_25;
}
tmp_assign_source_34 = tmp_tuple_unpack_2__element_1.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_34 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_34 );
Py_DECREF( old );
}
tmp_assign_source_35 = tmp_tuple_unpack_2__element_2.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_35 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_35 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_25:;
exception_keeper_type_24 = exception_type;
exception_keeper_value_24 = exception_value;
exception_keeper_tb_24 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_11 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_11;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_24 != NULL )
{
exception_type = exception_keeper_type_24;
exception_value = exception_keeper_value_24;
exception_tb = exception_keeper_tb_24;
goto frame_exception_exit_1;
}
goto finally_end_25;
finally_end_25:;
tmp_source_name_13 = var_i.object;
if ( tmp_source_name_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 180;
goto frame_exception_exit_1;
}
tmp_compare_left_5 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain_size );
if ( tmp_compare_left_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 180;
goto frame_exception_exit_1;
}
tmp_compare_right_5 = const_int_0;
tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_5, tmp_compare_right_5 );
if ( tmp_cmp_Eq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_5 );
frame_function->f_lineno = 180;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_5 );
if (tmp_cmp_Eq_1 == 1)
{
goto branch_yes_10;
}
else
{
goto branch_no_10;
}
branch_yes_10:;
tmp_called_12 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_12 == NULL ))
{
tmp_called_12 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 181;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_14 = var_i.object;
if ( tmp_source_name_14 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 181;
goto frame_exception_exit_1;
}
tmp_tuple_element_3 = LOOKUP_ATTRIBUTE( tmp_source_name_14, const_str_plain_shape );
if ( tmp_tuple_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 181;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_3 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_15 = par_self.object;
if ( tmp_source_name_15 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 181;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_15, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 181;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 181;
tmp_return_value = CALL_FUNCTION( tmp_called_12, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 181;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
branch_no_10:;
tmp_source_name_16 = var_i.object;
if ( tmp_source_name_16 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 183;
goto frame_exception_exit_1;
}
tmp_called_13 = LOOKUP_ATTRIBUTE( tmp_source_name_16, const_str_plain_min );
if ( tmp_called_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 183;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 183;
tmp_assign_source_36 = CALL_FUNCTION_NO_ARGS( tmp_called_13 );
Py_DECREF( tmp_called_13 );
if ( tmp_assign_source_36 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 183;
goto frame_exception_exit_1;
}
assert( var_min_i.object == NULL );
var_min_i.object = tmp_assign_source_36;
// Tried code
tmp_cond_value_15 = NULL;
// Tried code
tmp_compexpr_left_7 = var_min_i.object;
tmp_source_name_17 = par_self.object;
if ( tmp_source_name_17 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 184;
goto try_finally_handler_27;
}
tmp_subscr_target_7 = LOOKUP_ATTRIBUTE( tmp_source_name_17, const_str_plain_shape );
if ( tmp_subscr_target_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_27;
}
tmp_subscr_subscript_7 = const_int_0;
tmp_unary_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_7, tmp_subscr_subscript_7 );
Py_DECREF( tmp_subscr_target_7 );
if ( tmp_unary_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_27;
}
tmp_compexpr_right_7 = UNARY_OPERATION( PyNumber_Negative, tmp_unary_arg_1 );
Py_DECREF( tmp_unary_arg_1 );
if ( tmp_compexpr_right_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_27;
}
tmp_assign_source_37 = RICH_COMPARE_LT( tmp_compexpr_left_7, tmp_compexpr_right_7 );
Py_DECREF( tmp_compexpr_right_7 );
if ( tmp_assign_source_37 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_27;
}
assert( tmp_or_5__value_1.object == NULL );
tmp_or_5__value_1.object = tmp_assign_source_37;
tmp_cond_value_16 = tmp_or_5__value_1.object;
tmp_cond_truth_16 = CHECK_IF_TRUE( tmp_cond_value_16 );
if ( tmp_cond_truth_16 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_27;
}
if (tmp_cond_truth_16 == 1)
{
goto condexpr_true_10;
}
else
{
goto condexpr_false_10;
}
condexpr_true_10:;
tmp_cond_value_15 = tmp_or_5__value_1.object;
Py_INCREF( tmp_cond_value_15 );
goto condexpr_end_10;
condexpr_false_10:;
tmp_cond_value_15 = NULL;
// Tried code
tmp_result = tmp_or_5__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_5__value_1.object );
tmp_or_5__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_source_name_18 = var_i.object;
if ( tmp_source_name_18 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
tmp_called_14 = LOOKUP_ATTRIBUTE( tmp_source_name_18, const_str_plain_max );
if ( tmp_called_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
frame_function->f_lineno = 184;
tmp_compexpr_left_8 = CALL_FUNCTION_NO_ARGS( tmp_called_14 );
Py_DECREF( tmp_called_14 );
if ( tmp_compexpr_left_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
tmp_source_name_19 = par_self.object;
if ( tmp_source_name_19 == NULL )
{
Py_DECREF( tmp_compexpr_left_8 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
tmp_subscr_target_8 = LOOKUP_ATTRIBUTE( tmp_source_name_19, const_str_plain_shape );
if ( tmp_subscr_target_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_8 );
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
tmp_subscr_subscript_8 = const_int_0;
tmp_compexpr_right_8 = LOOKUP_SUBSCRIPT( tmp_subscr_target_8, tmp_subscr_subscript_8 );
Py_DECREF( tmp_subscr_target_8 );
if ( tmp_compexpr_right_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_8 );
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
tmp_cond_value_15 = RICH_COMPARE_GE( tmp_compexpr_left_8, tmp_compexpr_right_8 );
Py_DECREF( tmp_compexpr_left_8 );
Py_DECREF( tmp_compexpr_right_8 );
if ( tmp_cond_value_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 184;
goto try_finally_handler_28;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_28:;
exception_keeper_type_25 = exception_type;
exception_keeper_value_25 = exception_value;
exception_keeper_tb_25 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_25 != NULL )
{
exception_type = exception_keeper_type_25;
exception_value = exception_keeper_value_25;
exception_tb = exception_keeper_tb_25;
goto try_finally_handler_27;
}
goto finally_end_26;
finally_end_26:;
condexpr_end_10:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_27:;
exception_keeper_type_26 = exception_type;
exception_keeper_value_26 = exception_value;
exception_keeper_tb_26 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_26 != NULL )
{
exception_type = exception_keeper_type_26;
exception_value = exception_keeper_value_26;
exception_tb = exception_keeper_tb_26;
goto try_finally_handler_26;
}
goto finally_end_27;
finally_end_27:;
tmp_cond_truth_15 = CHECK_IF_TRUE( tmp_cond_value_15 );
if ( tmp_cond_truth_15 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_15 );
frame_function->f_lineno = 184;
goto try_finally_handler_26;
}
Py_DECREF( tmp_cond_value_15 );
if (tmp_cond_truth_15 == 1)
{
goto branch_yes_11;
}
else
{
goto branch_no_11;
}
branch_yes_11:;
tmp_binop_left_6 = const_str_digest_bd489d90bd42335afe30aea8e84c9dda;
tmp_binop_right_6 = PyTuple_New( 3 );
tmp_source_name_20 = var_i.object;
if ( tmp_source_name_20 == NULL )
{
Py_DECREF( tmp_binop_right_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
tmp_called_15 = LOOKUP_ATTRIBUTE( tmp_source_name_20, const_str_plain_min );
if ( tmp_called_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
frame_function->f_lineno = 186;
tmp_tuple_element_4 = CALL_FUNCTION_NO_ARGS( tmp_called_15 );
Py_DECREF( tmp_called_15 );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
PyTuple_SET_ITEM( tmp_binop_right_6, 0, tmp_tuple_element_4 );
tmp_source_name_21 = par_self.object;
if ( tmp_source_name_21 == NULL )
{
Py_DECREF( tmp_binop_right_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
tmp_subscr_target_9 = LOOKUP_ATTRIBUTE( tmp_source_name_21, const_str_plain_shape );
if ( tmp_subscr_target_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
tmp_subscr_subscript_9 = const_int_0;
tmp_tuple_element_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_9, tmp_subscr_subscript_9 );
Py_DECREF( tmp_subscr_target_9 );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
PyTuple_SET_ITEM( tmp_binop_right_6, 1, tmp_tuple_element_4 );
tmp_source_name_22 = par_self.object;
if ( tmp_source_name_22 == NULL )
{
Py_DECREF( tmp_binop_right_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
tmp_subscr_target_10 = LOOKUP_ATTRIBUTE( tmp_source_name_22, const_str_plain_shape );
if ( tmp_subscr_target_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
tmp_subscr_subscript_10 = const_int_0;
tmp_binop_left_7 = LOOKUP_SUBSCRIPT( tmp_subscr_target_10, tmp_subscr_subscript_10 );
Py_DECREF( tmp_subscr_target_10 );
if ( tmp_binop_left_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
tmp_binop_right_7 = const_int_pos_1;
tmp_tuple_element_4 = BINARY_OPERATION_SUB( tmp_binop_left_7, tmp_binop_right_7 );
Py_DECREF( tmp_binop_left_7 );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_6 );
frame_function->f_lineno = 186;
goto try_finally_handler_26;
}
PyTuple_SET_ITEM( tmp_binop_right_6, 2, tmp_tuple_element_4 );
tmp_make_exception_arg_3 = BINARY_OPERATION_REMAINDER( tmp_binop_left_6, tmp_binop_right_6 );
Py_DECREF( tmp_binop_right_6 );
if ( tmp_make_exception_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 185;
goto try_finally_handler_26;
}
frame_function->f_lineno = 185;
tmp_raise_type_3 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_3 );
Py_DECREF( tmp_make_exception_arg_3 );
if ( tmp_raise_type_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 185;
goto try_finally_handler_26;
}
exception_type = tmp_raise_type_3;
frame_function->f_lineno = 185;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_26;
branch_no_11:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_26:;
exception_keeper_type_27 = exception_type;
exception_keeper_value_27 = exception_value;
exception_keeper_tb_27 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_12 = frame_function->f_lineno;
Py_XDECREF( tmp_or_5__value_1.object );
tmp_or_5__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_12;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_27 != NULL )
{
exception_type = exception_keeper_type_27;
exception_value = exception_keeper_value_27;
exception_tb = exception_keeper_tb_27;
goto frame_exception_exit_1;
}
goto finally_end_28;
finally_end_28:;
tmp_compare_left_6 = var_min_i.object;
if ( tmp_compare_left_6 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267206 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 187;
goto frame_exception_exit_1;
}
tmp_compare_right_6 = const_int_0;
tmp_cmp_Lt_3 = RICH_COMPARE_BOOL_LT( tmp_compare_left_6, tmp_compare_right_6 );
if ( tmp_cmp_Lt_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 187;
goto frame_exception_exit_1;
}
if (tmp_cmp_Lt_3 == 1)
{
goto branch_yes_12;
}
else
{
goto branch_no_12;
}
branch_yes_12:;
tmp_source_name_23 = var_i.object;
if ( tmp_source_name_23 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 188;
goto frame_exception_exit_1;
}
tmp_called_16 = LOOKUP_ATTRIBUTE( tmp_source_name_23, const_str_plain_copy );
if ( tmp_called_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 188;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 188;
tmp_assign_source_38 = CALL_FUNCTION_NO_ARGS( tmp_called_16 );
Py_DECREF( tmp_called_16 );
if ( tmp_assign_source_38 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 188;
goto frame_exception_exit_1;
}
if (var_i.object == NULL)
{
var_i.object = tmp_assign_source_38;
}
else
{
PyObject *old = var_i.object;
var_i.object = tmp_assign_source_38;
Py_DECREF( old );
}
tmp_assign_source_39 = var_i.object;
assert( tmp_inplace_assign_3__inplace_target.object == NULL );
tmp_inplace_assign_3__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_39 );
// Tried code
tmp_compexpr_left_9 = var_i.object;
tmp_compexpr_right_9 = const_int_0;
tmp_assign_source_40 = RICH_COMPARE_LT( tmp_compexpr_left_9, tmp_compexpr_right_9 );
if ( tmp_assign_source_40 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
assert( tmp_inplace_assign_3__inplace_subscript.object == NULL );
tmp_inplace_assign_3__inplace_subscript.object = tmp_assign_source_40;
tmp_subscr_target_11 = tmp_inplace_assign_3__inplace_target.object;
tmp_subscr_subscript_11 = tmp_inplace_assign_3__inplace_subscript.object;
tmp_binop_left_8 = LOOKUP_SUBSCRIPT( tmp_subscr_target_11, tmp_subscr_subscript_11 );
if ( tmp_binop_left_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
tmp_source_name_24 = par_self.object;
if ( tmp_source_name_24 == NULL )
{
Py_DECREF( tmp_binop_left_8 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
tmp_subscr_target_12 = LOOKUP_ATTRIBUTE( tmp_source_name_24, const_str_plain_shape );
if ( tmp_subscr_target_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_8 );
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
tmp_subscr_subscript_12 = const_int_0;
tmp_binop_right_8 = LOOKUP_SUBSCRIPT( tmp_subscr_target_12, tmp_subscr_subscript_12 );
Py_DECREF( tmp_subscr_target_12 );
if ( tmp_binop_right_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_8 );
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
tmp_ass_subvalue_1 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_8, tmp_binop_right_8 );
Py_DECREF( tmp_binop_left_8 );
Py_DECREF( tmp_binop_right_8 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
tmp_ass_subscribed_1 = tmp_inplace_assign_3__inplace_target.object;
tmp_ass_subscript_1 = tmp_inplace_assign_3__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 189;
goto try_finally_handler_29;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_29:;
exception_keeper_type_28 = exception_type;
exception_keeper_value_28 = exception_value;
exception_keeper_tb_28 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_13 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_3__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_3__inplace_target.object );
tmp_inplace_assign_3__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_3__inplace_subscript.object );
tmp_inplace_assign_3__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_13;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_28 != NULL )
{
exception_type = exception_keeper_type_28;
exception_value = exception_keeper_value_28;
exception_tb = exception_keeper_tb_28;
goto frame_exception_exit_1;
}
goto finally_end_29;
finally_end_29:;
branch_no_12:;
tmp_source_name_25 = var_j.object;
if ( tmp_source_name_25 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 191;
goto frame_exception_exit_1;
}
tmp_called_17 = LOOKUP_ATTRIBUTE( tmp_source_name_25, const_str_plain_min );
if ( tmp_called_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 191;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 191;
tmp_assign_source_41 = CALL_FUNCTION_NO_ARGS( tmp_called_17 );
Py_DECREF( tmp_called_17 );
if ( tmp_assign_source_41 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 191;
goto frame_exception_exit_1;
}
assert( var_min_j.object == NULL );
var_min_j.object = tmp_assign_source_41;
// Tried code
tmp_cond_value_17 = NULL;
// Tried code
tmp_compexpr_left_10 = var_min_j.object;
tmp_source_name_26 = par_self.object;
if ( tmp_source_name_26 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 192;
goto try_finally_handler_31;
}
tmp_subscr_target_13 = LOOKUP_ATTRIBUTE( tmp_source_name_26, const_str_plain_shape );
if ( tmp_subscr_target_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_31;
}
tmp_subscr_subscript_13 = const_int_0;
tmp_unary_arg_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_13, tmp_subscr_subscript_13 );
Py_DECREF( tmp_subscr_target_13 );
if ( tmp_unary_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_31;
}
tmp_compexpr_right_10 = UNARY_OPERATION( PyNumber_Negative, tmp_unary_arg_2 );
Py_DECREF( tmp_unary_arg_2 );
if ( tmp_compexpr_right_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_31;
}
tmp_assign_source_42 = RICH_COMPARE_LT( tmp_compexpr_left_10, tmp_compexpr_right_10 );
Py_DECREF( tmp_compexpr_right_10 );
if ( tmp_assign_source_42 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_31;
}
assert( tmp_or_6__value_1.object == NULL );
tmp_or_6__value_1.object = tmp_assign_source_42;
tmp_cond_value_18 = tmp_or_6__value_1.object;
tmp_cond_truth_18 = CHECK_IF_TRUE( tmp_cond_value_18 );
if ( tmp_cond_truth_18 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_31;
}
if (tmp_cond_truth_18 == 1)
{
goto condexpr_true_11;
}
else
{
goto condexpr_false_11;
}
condexpr_true_11:;
tmp_cond_value_17 = tmp_or_6__value_1.object;
Py_INCREF( tmp_cond_value_17 );
goto condexpr_end_11;
condexpr_false_11:;
tmp_cond_value_17 = NULL;
// Tried code
tmp_result = tmp_or_6__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_6__value_1.object );
tmp_or_6__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_source_name_27 = var_j.object;
if ( tmp_source_name_27 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
tmp_called_18 = LOOKUP_ATTRIBUTE( tmp_source_name_27, const_str_plain_max );
if ( tmp_called_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
frame_function->f_lineno = 192;
tmp_compexpr_left_11 = CALL_FUNCTION_NO_ARGS( tmp_called_18 );
Py_DECREF( tmp_called_18 );
if ( tmp_compexpr_left_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
tmp_source_name_28 = par_self.object;
if ( tmp_source_name_28 == NULL )
{
Py_DECREF( tmp_compexpr_left_11 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
tmp_subscr_target_14 = LOOKUP_ATTRIBUTE( tmp_source_name_28, const_str_plain_shape );
if ( tmp_subscr_target_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_11 );
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
tmp_subscr_subscript_14 = const_int_pos_1;
tmp_compexpr_right_11 = LOOKUP_SUBSCRIPT( tmp_subscr_target_14, tmp_subscr_subscript_14 );
Py_DECREF( tmp_subscr_target_14 );
if ( tmp_compexpr_right_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_11 );
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
tmp_cond_value_17 = RICH_COMPARE_GE( tmp_compexpr_left_11, tmp_compexpr_right_11 );
Py_DECREF( tmp_compexpr_left_11 );
Py_DECREF( tmp_compexpr_right_11 );
if ( tmp_cond_value_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 192;
goto try_finally_handler_32;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_32:;
exception_keeper_type_29 = exception_type;
exception_keeper_value_29 = exception_value;
exception_keeper_tb_29 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_29 != NULL )
{
exception_type = exception_keeper_type_29;
exception_value = exception_keeper_value_29;
exception_tb = exception_keeper_tb_29;
goto try_finally_handler_31;
}
goto finally_end_30;
finally_end_30:;
condexpr_end_11:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_31:;
exception_keeper_type_30 = exception_type;
exception_keeper_value_30 = exception_value;
exception_keeper_tb_30 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_30 != NULL )
{
exception_type = exception_keeper_type_30;
exception_value = exception_keeper_value_30;
exception_tb = exception_keeper_tb_30;
goto try_finally_handler_30;
}
goto finally_end_31;
finally_end_31:;
tmp_cond_truth_17 = CHECK_IF_TRUE( tmp_cond_value_17 );
if ( tmp_cond_truth_17 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_17 );
frame_function->f_lineno = 192;
goto try_finally_handler_30;
}
Py_DECREF( tmp_cond_value_17 );
if (tmp_cond_truth_17 == 1)
{
goto branch_yes_13;
}
else
{
goto branch_no_13;
}
branch_yes_13:;
tmp_binop_left_9 = const_str_digest_bd489d90bd42335afe30aea8e84c9dda;
tmp_binop_right_9 = PyTuple_New( 3 );
tmp_source_name_29 = var_j.object;
if ( tmp_source_name_29 == NULL )
{
Py_DECREF( tmp_binop_right_9 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
tmp_called_19 = LOOKUP_ATTRIBUTE( tmp_source_name_29, const_str_plain_min );
if ( tmp_called_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
frame_function->f_lineno = 194;
tmp_tuple_element_5 = CALL_FUNCTION_NO_ARGS( tmp_called_19 );
Py_DECREF( tmp_called_19 );
if ( tmp_tuple_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
PyTuple_SET_ITEM( tmp_binop_right_9, 0, tmp_tuple_element_5 );
tmp_source_name_30 = par_self.object;
if ( tmp_source_name_30 == NULL )
{
Py_DECREF( tmp_binop_right_9 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
tmp_subscr_target_15 = LOOKUP_ATTRIBUTE( tmp_source_name_30, const_str_plain_shape );
if ( tmp_subscr_target_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
tmp_subscr_subscript_15 = const_int_pos_1;
tmp_tuple_element_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_15, tmp_subscr_subscript_15 );
Py_DECREF( tmp_subscr_target_15 );
if ( tmp_tuple_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
PyTuple_SET_ITEM( tmp_binop_right_9, 1, tmp_tuple_element_5 );
tmp_source_name_31 = par_self.object;
if ( tmp_source_name_31 == NULL )
{
Py_DECREF( tmp_binop_right_9 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
tmp_subscr_target_16 = LOOKUP_ATTRIBUTE( tmp_source_name_31, const_str_plain_shape );
if ( tmp_subscr_target_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
tmp_subscr_subscript_16 = const_int_pos_1;
tmp_binop_left_10 = LOOKUP_SUBSCRIPT( tmp_subscr_target_16, tmp_subscr_subscript_16 );
Py_DECREF( tmp_subscr_target_16 );
if ( tmp_binop_left_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
tmp_binop_right_10 = const_int_pos_1;
tmp_tuple_element_5 = BINARY_OPERATION_SUB( tmp_binop_left_10, tmp_binop_right_10 );
Py_DECREF( tmp_binop_left_10 );
if ( tmp_tuple_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_9 );
frame_function->f_lineno = 194;
goto try_finally_handler_30;
}
PyTuple_SET_ITEM( tmp_binop_right_9, 2, tmp_tuple_element_5 );
tmp_make_exception_arg_4 = BINARY_OPERATION_REMAINDER( tmp_binop_left_9, tmp_binop_right_9 );
Py_DECREF( tmp_binop_right_9 );
if ( tmp_make_exception_arg_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 193;
goto try_finally_handler_30;
}
frame_function->f_lineno = 193;
tmp_raise_type_4 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_4 );
Py_DECREF( tmp_make_exception_arg_4 );
if ( tmp_raise_type_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 193;
goto try_finally_handler_30;
}
exception_type = tmp_raise_type_4;
frame_function->f_lineno = 193;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_30;
branch_no_13:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_30:;
exception_keeper_type_31 = exception_type;
exception_keeper_value_31 = exception_value;
exception_keeper_tb_31 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_14 = frame_function->f_lineno;
Py_XDECREF( tmp_or_6__value_1.object );
tmp_or_6__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_14;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_31 != NULL )
{
exception_type = exception_keeper_type_31;
exception_value = exception_keeper_value_31;
exception_tb = exception_keeper_tb_31;
goto frame_exception_exit_1;
}
goto finally_end_32;
finally_end_32:;
tmp_compare_left_7 = var_min_j.object;
if ( tmp_compare_left_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267257 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 195;
goto frame_exception_exit_1;
}
tmp_compare_right_7 = const_int_0;
tmp_cmp_Lt_4 = RICH_COMPARE_BOOL_LT( tmp_compare_left_7, tmp_compare_right_7 );
if ( tmp_cmp_Lt_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 195;
goto frame_exception_exit_1;
}
if (tmp_cmp_Lt_4 == 1)
{
goto branch_yes_14;
}
else
{
goto branch_no_14;
}
branch_yes_14:;
tmp_source_name_32 = var_j.object;
if ( tmp_source_name_32 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 196;
goto frame_exception_exit_1;
}
tmp_called_20 = LOOKUP_ATTRIBUTE( tmp_source_name_32, const_str_plain_copy );
if ( tmp_called_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 196;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 196;
tmp_assign_source_43 = CALL_FUNCTION_NO_ARGS( tmp_called_20 );
Py_DECREF( tmp_called_20 );
if ( tmp_assign_source_43 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 196;
goto frame_exception_exit_1;
}
if (var_j.object == NULL)
{
var_j.object = tmp_assign_source_43;
}
else
{
PyObject *old = var_j.object;
var_j.object = tmp_assign_source_43;
Py_DECREF( old );
}
tmp_assign_source_44 = var_j.object;
assert( tmp_inplace_assign_4__inplace_target.object == NULL );
tmp_inplace_assign_4__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_44 );
// Tried code
tmp_compexpr_left_12 = var_j.object;
tmp_compexpr_right_12 = const_int_0;
tmp_assign_source_45 = RICH_COMPARE_LT( tmp_compexpr_left_12, tmp_compexpr_right_12 );
if ( tmp_assign_source_45 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
assert( tmp_inplace_assign_4__inplace_subscript.object == NULL );
tmp_inplace_assign_4__inplace_subscript.object = tmp_assign_source_45;
tmp_subscr_target_17 = tmp_inplace_assign_4__inplace_target.object;
tmp_subscr_subscript_17 = tmp_inplace_assign_4__inplace_subscript.object;
tmp_binop_left_11 = LOOKUP_SUBSCRIPT( tmp_subscr_target_17, tmp_subscr_subscript_17 );
if ( tmp_binop_left_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
tmp_source_name_33 = par_self.object;
if ( tmp_source_name_33 == NULL )
{
Py_DECREF( tmp_binop_left_11 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
tmp_subscr_target_18 = LOOKUP_ATTRIBUTE( tmp_source_name_33, const_str_plain_shape );
if ( tmp_subscr_target_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_11 );
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
tmp_subscr_subscript_18 = const_int_pos_1;
tmp_binop_right_11 = LOOKUP_SUBSCRIPT( tmp_subscr_target_18, tmp_subscr_subscript_18 );
Py_DECREF( tmp_subscr_target_18 );
if ( tmp_binop_right_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_11 );
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
tmp_ass_subvalue_2 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_11, tmp_binop_right_11 );
Py_DECREF( tmp_binop_left_11 );
Py_DECREF( tmp_binop_right_11 );
if ( tmp_ass_subvalue_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
tmp_ass_subscribed_2 = tmp_inplace_assign_4__inplace_target.object;
tmp_ass_subscript_2 = tmp_inplace_assign_4__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2 );
Py_DECREF( tmp_ass_subvalue_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 197;
goto try_finally_handler_33;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_33:;
exception_keeper_type_32 = exception_type;
exception_keeper_value_32 = exception_value;
exception_keeper_tb_32 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_15 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_4__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_4__inplace_target.object );
tmp_inplace_assign_4__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_4__inplace_subscript.object );
tmp_inplace_assign_4__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_15;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_32 != NULL )
{
exception_type = exception_keeper_type_32;
exception_value = exception_keeper_value_32;
exception_tb = exception_keeper_tb_32;
goto frame_exception_exit_1;
}
goto finally_end_33;
finally_end_33:;
branch_no_14:;
tmp_called_21 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_21 == NULL ))
{
tmp_called_21 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_21 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 199;
goto frame_exception_exit_1;
}
tmp_call_pos_2 = PyTuple_New( 1 );
tmp_source_name_34 = var_i.object;
if ( tmp_source_name_34 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 199;
goto frame_exception_exit_1;
}
tmp_tuple_element_6 = LOOKUP_ATTRIBUTE( tmp_source_name_34, const_str_plain_shape );
if ( tmp_tuple_element_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_2 );
frame_function->f_lineno = 199;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_2, 0, tmp_tuple_element_6 );
tmp_call_kw_2 = _PyDict_NewPresized( 1 );
tmp_source_name_35 = par_self.object;
if ( tmp_source_name_35 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 199;
goto frame_exception_exit_1;
}
tmp_dict_value_2 = LOOKUP_ATTRIBUTE( tmp_source_name_35, const_str_plain_dtype );
if ( tmp_dict_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 199;
goto frame_exception_exit_1;
}
tmp_dict_key_2 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_2, tmp_dict_key_2, tmp_dict_value_2 );
Py_DECREF( tmp_dict_value_2 );
frame_function->f_lineno = 199;
tmp_assign_source_46 = CALL_FUNCTION( tmp_called_21, tmp_call_pos_2, tmp_call_kw_2 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
if ( tmp_assign_source_46 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 199;
goto frame_exception_exit_1;
}
assert( var_newdok.object == NULL );
var_newdok.object = tmp_assign_source_46;
tmp_called_22 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_called_22 == NULL ))
{
tmp_called_22 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_called_22 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 201;
goto frame_exception_exit_1;
}
tmp_source_name_36 = var_i.object;
if ( tmp_source_name_36 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 201;
goto frame_exception_exit_1;
}
tmp_subscr_target_19 = LOOKUP_ATTRIBUTE( tmp_source_name_36, const_str_plain_shape );
if ( tmp_subscr_target_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 201;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_19 = const_int_0;
tmp_call_arg_element_19 = LOOKUP_SUBSCRIPT( tmp_subscr_target_19, tmp_subscr_subscript_19 );
Py_DECREF( tmp_subscr_target_19 );
if ( tmp_call_arg_element_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 201;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 201;
tmp_iter_arg_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_22, tmp_call_arg_element_19 );
Py_DECREF( tmp_call_arg_element_19 );
if ( tmp_iter_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 201;
goto frame_exception_exit_1;
}
tmp_assign_source_47 = MAKE_ITERATOR( tmp_iter_arg_3 );
Py_DECREF( tmp_iter_arg_3 );
if ( tmp_assign_source_47 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 201;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_47;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_48 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_48 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 201;
goto try_finally_handler_34;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_48;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_48;
Py_DECREF( old );
}
tmp_assign_source_49 = tmp_for_loop_1__iter_value.object;
if (var_a.object == NULL)
{
var_a.object = INCREASE_REFCOUNT( tmp_assign_source_49 );
}
else
{
PyObject *old = var_a.object;
var_a.object = INCREASE_REFCOUNT( tmp_assign_source_49 );
Py_DECREF( old );
}
tmp_called_23 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_called_23 == NULL ))
{
tmp_called_23 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_called_23 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 202;
goto try_finally_handler_34;
}
tmp_source_name_37 = var_i.object;
if ( tmp_source_name_37 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 202;
goto try_finally_handler_34;
}
tmp_subscr_target_20 = LOOKUP_ATTRIBUTE( tmp_source_name_37, const_str_plain_shape );
if ( tmp_subscr_target_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 202;
goto try_finally_handler_34;
}
tmp_subscr_subscript_20 = const_int_pos_1;
tmp_call_arg_element_20 = LOOKUP_SUBSCRIPT( tmp_subscr_target_20, tmp_subscr_subscript_20 );
Py_DECREF( tmp_subscr_target_20 );
if ( tmp_call_arg_element_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 202;
goto try_finally_handler_34;
}
frame_function->f_lineno = 202;
tmp_iter_arg_4 = CALL_FUNCTION_WITH_ARGS1( tmp_called_23, tmp_call_arg_element_20 );
Py_DECREF( tmp_call_arg_element_20 );
if ( tmp_iter_arg_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 202;
goto try_finally_handler_34;
}
tmp_assign_source_50 = MAKE_ITERATOR( tmp_iter_arg_4 );
Py_DECREF( tmp_iter_arg_4 );
if ( tmp_assign_source_50 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 202;
goto try_finally_handler_34;
}
if (tmp_for_loop_2__for_iterator.object == NULL)
{
tmp_for_loop_2__for_iterator.object = tmp_assign_source_50;
}
else
{
PyObject *old = tmp_for_loop_2__for_iterator.object;
tmp_for_loop_2__for_iterator.object = tmp_assign_source_50;
Py_DECREF( old );
}
// Tried code
loop_start_2:;
tmp_next_source_2 = tmp_for_loop_2__for_iterator.object;
tmp_assign_source_51 = ITERATOR_NEXT( tmp_next_source_2 );
if (tmp_assign_source_51 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_2;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 202;
goto try_finally_handler_35;
}
}
if (tmp_for_loop_2__iter_value.object == NULL)
{
tmp_for_loop_2__iter_value.object = tmp_assign_source_51;
}
else
{
PyObject *old = tmp_for_loop_2__iter_value.object;
tmp_for_loop_2__iter_value.object = tmp_assign_source_51;
Py_DECREF( old );
}
tmp_assign_source_52 = tmp_for_loop_2__iter_value.object;
if (var_b.object == NULL)
{
var_b.object = INCREASE_REFCOUNT( tmp_assign_source_52 );
}
else
{
PyObject *old = var_b.object;
var_b.object = INCREASE_REFCOUNT( tmp_assign_source_52 );
Py_DECREF( old );
}
tmp_source_name_38 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_38 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
tmp_called_24 = LOOKUP_ATTRIBUTE( tmp_source_name_38, const_str_plain_get );
if ( tmp_called_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
tmp_call_arg_element_21 = par_self.object;
if ( tmp_call_arg_element_21 == NULL )
{
Py_DECREF( tmp_called_24 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
tmp_call_arg_element_22 = PyTuple_New( 2 );
tmp_subscr_target_21 = var_i.object;
if ( tmp_subscr_target_21 == NULL )
{
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
tmp_subscr_subscript_21 = PyTuple_New( 2 );
tmp_tuple_element_8 = var_a.object;
if ( tmp_tuple_element_8 == NULL )
{
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
Py_DECREF( tmp_subscr_subscript_21 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
Py_INCREF( tmp_tuple_element_8 );
PyTuple_SET_ITEM( tmp_subscr_subscript_21, 0, tmp_tuple_element_8 );
tmp_tuple_element_8 = var_b.object;
Py_INCREF( tmp_tuple_element_8 );
PyTuple_SET_ITEM( tmp_subscr_subscript_21, 1, tmp_tuple_element_8 );
tmp_tuple_element_7 = LOOKUP_SUBSCRIPT( tmp_subscr_target_21, tmp_subscr_subscript_21 );
Py_DECREF( tmp_subscr_subscript_21 );
if ( tmp_tuple_element_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
PyTuple_SET_ITEM( tmp_call_arg_element_22, 0, tmp_tuple_element_7 );
tmp_subscr_target_22 = var_j.object;
if ( tmp_subscr_target_22 == NULL )
{
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
tmp_subscr_subscript_22 = PyTuple_New( 2 );
tmp_tuple_element_9 = var_a.object;
if ( tmp_tuple_element_9 == NULL )
{
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
Py_DECREF( tmp_subscr_subscript_22 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
Py_INCREF( tmp_tuple_element_9 );
PyTuple_SET_ITEM( tmp_subscr_subscript_22, 0, tmp_tuple_element_9 );
tmp_tuple_element_9 = var_b.object;
Py_INCREF( tmp_tuple_element_9 );
PyTuple_SET_ITEM( tmp_subscr_subscript_22, 1, tmp_tuple_element_9 );
tmp_tuple_element_7 = LOOKUP_SUBSCRIPT( tmp_subscr_target_22, tmp_subscr_subscript_22 );
Py_DECREF( tmp_subscr_subscript_22 );
if ( tmp_tuple_element_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
PyTuple_SET_ITEM( tmp_call_arg_element_22, 1, tmp_tuple_element_7 );
tmp_call_arg_element_23 = const_float_0_0;
frame_function->f_lineno = 203;
tmp_assign_source_53 = CALL_FUNCTION_WITH_ARGS3( tmp_called_24, tmp_call_arg_element_21, tmp_call_arg_element_22, tmp_call_arg_element_23 );
Py_DECREF( tmp_called_24 );
Py_DECREF( tmp_call_arg_element_22 );
if ( tmp_assign_source_53 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 203;
goto try_finally_handler_35;
}
if (var_v.object == NULL)
{
var_v.object = tmp_assign_source_53;
}
else
{
PyObject *old = var_v.object;
var_v.object = tmp_assign_source_53;
Py_DECREF( old );
}
tmp_compare_left_8 = var_v.object;
tmp_compare_right_8 = const_int_0;
tmp_cmp_NotEq_1 = RICH_COMPARE_BOOL_NE( tmp_compare_left_8, tmp_compare_right_8 );
if ( tmp_cmp_NotEq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 204;
goto try_finally_handler_35;
}
if (tmp_cmp_NotEq_1 == 1)
{
goto branch_yes_15;
}
else
{
goto branch_no_15;
}
branch_yes_15:;
tmp_source_name_39 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_39 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 205;
goto try_finally_handler_35;
}
tmp_called_25 = LOOKUP_ATTRIBUTE( tmp_source_name_39, const_str_plain___setitem__ );
if ( tmp_called_25 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 205;
goto try_finally_handler_35;
}
tmp_call_arg_element_24 = var_newdok.object;
if ( tmp_call_arg_element_24 == NULL )
{
Py_DECREF( tmp_called_25 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267308 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 205;
goto try_finally_handler_35;
}
tmp_call_arg_element_25 = PyTuple_New( 2 );
tmp_tuple_element_10 = var_a.object;
if ( tmp_tuple_element_10 == NULL )
{
Py_DECREF( tmp_called_25 );
Py_DECREF( tmp_call_arg_element_25 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 205;
goto try_finally_handler_35;
}
Py_INCREF( tmp_tuple_element_10 );
PyTuple_SET_ITEM( tmp_call_arg_element_25, 0, tmp_tuple_element_10 );
tmp_tuple_element_10 = var_b.object;
Py_INCREF( tmp_tuple_element_10 );
PyTuple_SET_ITEM( tmp_call_arg_element_25, 1, tmp_tuple_element_10 );
tmp_call_arg_element_26 = var_v.object;
frame_function->f_lineno = 205;
tmp_unused = CALL_FUNCTION_WITH_ARGS3( tmp_called_25, tmp_call_arg_element_24, tmp_call_arg_element_25, tmp_call_arg_element_26 );
Py_DECREF( tmp_called_25 );
Py_DECREF( tmp_call_arg_element_25 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 205;
goto try_finally_handler_35;
}
Py_DECREF( tmp_unused );
branch_no_15:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 202;
goto try_finally_handler_35;
}
goto loop_start_2;
loop_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_35:;
exception_keeper_type_33 = exception_type;
exception_keeper_value_33 = exception_value;
exception_keeper_tb_33 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_16 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_2__iter_value.object );
tmp_for_loop_2__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_2__for_iterator.object );
tmp_for_loop_2__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_16;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_33 != NULL )
{
exception_type = exception_keeper_type_33;
exception_value = exception_keeper_value_33;
exception_tb = exception_keeper_tb_33;
goto try_finally_handler_34;
}
goto finally_end_34;
finally_end_34:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 201;
goto try_finally_handler_34;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_34:;
exception_keeper_type_34 = exception_type;
exception_keeper_value_34 = exception_value;
exception_keeper_tb_34 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_17 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_17;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_34 != NULL )
{
exception_type = exception_keeper_type_34;
exception_value = exception_keeper_value_34;
exception_tb = exception_keeper_tb_34;
goto frame_exception_exit_1;
}
goto finally_end_35;
finally_end_35:;
tmp_return_value = var_newdok.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267308 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 207;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((var_i_intlike.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_intlike,
var_i_intlike.object
);
}
if ((var_j_intlike.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_intlike,
var_j_intlike.object
);
}
if ((var_i_slice.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_slice,
var_i_slice.object
);
}
if ((var_j_slice.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_slice,
var_j_slice.object
);
}
if ((var_i_indices.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_indices,
var_i_indices.object
);
}
if ((var_j_indices.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_indices,
var_j_indices.object
);
}
if ((var_i_seq.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_seq,
var_i_seq.object
);
}
if ((var_j_seq.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_seq,
var_j_seq.object
);
}
if ((var_newshape.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_newshape,
var_newshape.object
);
}
if ((var_newsize.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_newsize,
var_newsize.object
);
}
if ((var_min_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_min_i,
var_min_i.object
);
}
if ((var_min_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_min_j,
var_min_j.object
);
}
if ((var_newdok.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_newdok,
var_newdok.object
);
}
if ((var_a.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_a,
var_a.object
);
}
if ((var_b.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_b,
var_b.object
);
}
if ((var_v.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_v,
var_v.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_index.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_index,
par_index.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_index = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__getitem__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_index == key )
{
assert( _python_par_index == NULL );
_python_par_index = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_index, key ) == 1 )
{
assert( _python_par_index == NULL );
_python_par_index = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__getitem__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_index != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_index = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_index == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_index = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_index == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_index };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_index );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_index );
return NULL;
}
static PyObject *dparse_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_i_indices, PyObject *_python_par_j_indices, PyObject *_python_par_shape )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_i_indices; par_i_indices.object = _python_par_i_indices;
PyObjectLocalVariable par_j_indices; par_j_indices.object = _python_par_j_indices;
PyObjectLocalVariable par_shape; par_shape.object = _python_par_shape;
PyObjectLocalVariable var_i_start;
PyObjectLocalVariable var_i_stop;
PyObjectLocalVariable var_i_stride;
PyObjectLocalVariable var_j_start;
PyObjectLocalVariable var_j_stop;
PyObjectLocalVariable var_j_stride;
PyObjectLocalVariable var_newdok;
PyObjectLocalVariable var_ii;
PyObjectLocalVariable var_jj;
PyObjectLocalVariable var_a;
PyObjectLocalVariable var_ra;
PyObjectLocalVariable var_b;
PyObjectLocalVariable var_rb;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_tuple_unpack_1__element_3;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObjectTempVariable tmp_tuple_unpack_2__element_3;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_3__source_iter;
PyObjectTempVariable tmp_tuple_unpack_3__element_1;
PyObjectTempVariable tmp_tuple_unpack_3__element_2;
PyObjectTempVariable tmp_tuple_unpack_4__source_iter;
PyObjectTempVariable tmp_tuple_unpack_4__element_1;
PyObjectTempVariable tmp_tuple_unpack_4__element_2;
PyObjectTempVariable tmp_or_1__value_1;
PyObjectTempVariable tmp_or_1__value_2;
PyObjectTempVariable tmp_tuple_unpack_5__source_iter;
PyObjectTempVariable tmp_tuple_unpack_5__element_1;
PyObjectTempVariable tmp_tuple_unpack_5__element_2;
PyObjectTempVariable tmp_or_2__value_1;
PyObjectTempVariable tmp_or_2__value_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *exception_keeper_type_7;
PyObject *exception_keeper_value_7;
PyTracebackObject *exception_keeper_tb_7;
PyObject *exception_keeper_type_8;
PyObject *exception_keeper_value_8;
PyTracebackObject *exception_keeper_tb_8;
PyObject *exception_keeper_type_9;
PyObject *exception_keeper_value_9;
PyTracebackObject *exception_keeper_tb_9;
PyObject *exception_keeper_type_10;
PyObject *exception_keeper_value_10;
PyTracebackObject *exception_keeper_tb_10;
PyObject *exception_keeper_type_11;
PyObject *exception_keeper_value_11;
PyTracebackObject *exception_keeper_tb_11;
PyObject *exception_keeper_type_12;
PyObject *exception_keeper_value_12;
PyTracebackObject *exception_keeper_tb_12;
PyObject *exception_keeper_type_13;
PyObject *exception_keeper_value_13;
PyTracebackObject *exception_keeper_tb_13;
PyObject *exception_keeper_type_14;
PyObject *exception_keeper_value_14;
PyTracebackObject *exception_keeper_tb_14;
PyObject *exception_keeper_type_15;
PyObject *exception_keeper_value_15;
PyTracebackObject *exception_keeper_tb_15;
PyObject *exception_keeper_type_16;
PyObject *exception_keeper_value_16;
PyTracebackObject *exception_keeper_tb_16;
PyObject *exception_keeper_type_17;
PyObject *exception_keeper_value_17;
PyTracebackObject *exception_keeper_tb_17;
PyObject *exception_keeper_type_18;
PyObject *exception_keeper_value_18;
PyTracebackObject *exception_keeper_tb_18;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_assign_source_25;
PyObject *tmp_assign_source_26;
PyObject *tmp_assign_source_27;
PyObject *tmp_assign_source_28;
PyObject *tmp_assign_source_29;
PyObject *tmp_assign_source_30;
PyObject *tmp_assign_source_31;
PyObject *tmp_assign_source_32;
PyObject *tmp_assign_source_33;
PyObject *tmp_assign_source_34;
PyObject *tmp_assign_source_35;
PyObject *tmp_assign_source_36;
PyObject *tmp_assign_source_37;
PyObject *tmp_assign_source_38;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_call_arg_element_6;
PyObject *tmp_call_arg_element_7;
PyObject *tmp_call_arg_element_8;
PyObject *tmp_call_arg_element_9;
PyObject *tmp_call_arg_element_10;
PyObject *tmp_call_arg_element_11;
PyObject *tmp_call_arg_element_12;
PyObject *tmp_call_arg_element_13;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_left_2;
PyObject *tmp_compexpr_left_3;
PyObject *tmp_compexpr_left_4;
PyObject *tmp_compexpr_left_5;
PyObject *tmp_compexpr_left_6;
PyObject *tmp_compexpr_right_1;
PyObject *tmp_compexpr_right_2;
PyObject *tmp_compexpr_right_3;
PyObject *tmp_compexpr_right_4;
PyObject *tmp_compexpr_right_5;
PyObject *tmp_compexpr_right_6;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
int tmp_cond_truth_4;
int tmp_cond_truth_5;
int tmp_cond_truth_6;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_cond_value_4;
PyObject *tmp_cond_value_5;
PyObject *tmp_cond_value_6;
bool tmp_continue_1;
bool tmp_continue_2;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_int_arg_1;
PyObject *tmp_int_arg_2;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iter_arg_5;
PyObject *tmp_iter_arg_6;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_attempt_3;
PyObject *tmp_iterator_attempt_4;
PyObject *tmp_iterator_attempt_5;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_iterator_name_3;
PyObject *tmp_iterator_name_4;
PyObject *tmp_iterator_name_5;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
int tmp_tried_lineno_6;
int tmp_tried_lineno_7;
int tmp_tried_lineno_8;
int tmp_tried_lineno_9;
int tmp_tried_lineno_10;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
PyObject *tmp_unpack_5;
PyObject *tmp_unpack_6;
PyObject *tmp_unpack_7;
PyObject *tmp_unpack_8;
PyObject *tmp_unpack_9;
PyObject *tmp_unpack_10;
PyObject *tmp_unpack_11;
PyObject *tmp_unpack_12;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_ea65d00e50b8d46c470c63b6eb27603d, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_called_1 = LOOKUP_BUILTIN( const_str_plain_map );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
tmp_call_arg_element_1 = LOOKUP_BUILTIN( const_str_plain_int );
if ( tmp_call_arg_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
tmp_call_arg_element_2 = par_i_indices.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267057 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
frame_function->f_lineno = 211;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_1, tmp_call_arg_element_1, tmp_call_arg_element_2 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_unpack_3 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 2 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 211;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_3.object == NULL );
tmp_tuple_unpack_1__element_3.object = tmp_assign_source_4;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 3)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_5 = tmp_tuple_unpack_1__element_1.object;
assert( var_i_start.object == NULL );
var_i_start.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
tmp_assign_source_6 = tmp_tuple_unpack_1__element_2.object;
assert( var_i_stop.object == NULL );
var_i_stop.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
tmp_assign_source_7 = tmp_tuple_unpack_1__element_3.object;
assert( var_i_stride.object == NULL );
var_i_stride.object = INCREASE_REFCOUNT( tmp_assign_source_7 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_3.object );
tmp_tuple_unpack_1__element_3.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
// Tried code
tmp_called_2 = LOOKUP_BUILTIN( const_str_plain_map );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
tmp_call_arg_element_3 = LOOKUP_BUILTIN( const_str_plain_int );
if ( tmp_call_arg_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
tmp_call_arg_element_4 = par_j_indices.object;
if ( tmp_call_arg_element_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267112 ], 55, 0 );
exception_tb = NULL;
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
frame_function->f_lineno = 212;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS2( tmp_called_2, tmp_call_arg_element_3, tmp_call_arg_element_4 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
tmp_assign_source_8 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__source_iter.object == NULL );
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_8;
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_9 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 0 );
if ( tmp_assign_source_9 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__element_1.object == NULL );
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_9;
tmp_unpack_5 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_10 = UNPACK_PARAMETER_NEXT( tmp_unpack_5, 1 );
if ( tmp_assign_source_10 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__element_2.object == NULL );
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_10;
tmp_unpack_6 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_11 = UNPACK_PARAMETER_NEXT( tmp_unpack_6, 2 );
if ( tmp_assign_source_11 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 212;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__element_3.object == NULL );
tmp_tuple_unpack_2__element_3.object = tmp_assign_source_11;
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 3)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
tmp_assign_source_12 = tmp_tuple_unpack_2__element_1.object;
assert( var_j_start.object == NULL );
var_j_start.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
tmp_assign_source_13 = tmp_tuple_unpack_2__element_2.object;
assert( var_j_stop.object == NULL );
var_j_stop.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
tmp_assign_source_14 = tmp_tuple_unpack_2__element_3.object;
assert( var_j_stride.object == NULL );
var_j_stride.object = INCREASE_REFCOUNT( tmp_assign_source_14 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_3.object );
tmp_tuple_unpack_2__element_3.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto frame_exception_exit_1;
}
goto finally_end_2;
finally_end_2:;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 214;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = par_shape.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5018 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 214;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 214;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 214;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 214;
tmp_assign_source_15 = CALL_FUNCTION( tmp_called_3, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 214;
goto frame_exception_exit_1;
}
assert( var_newdok.object == NULL );
var_newdok.object = tmp_assign_source_15;
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 216;
goto frame_exception_exit_1;
}
tmp_called_4 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_keys );
if ( tmp_called_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 216;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 216;
tmp_iter_arg_3 = CALL_FUNCTION_NO_ARGS( tmp_called_4 );
Py_DECREF( tmp_called_4 );
if ( tmp_iter_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 216;
goto frame_exception_exit_1;
}
tmp_assign_source_16 = MAKE_ITERATOR( tmp_iter_arg_3 );
Py_DECREF( tmp_iter_arg_3 );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 216;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_16;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_17 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_17 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 216;
goto try_finally_handler_3;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_17;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_17;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_4 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_18 = MAKE_ITERATOR( tmp_iter_arg_4 );
if ( tmp_assign_source_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 216;
goto try_finally_handler_4;
}
if (tmp_tuple_unpack_3__source_iter.object == NULL)
{
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_18;
}
else
{
PyObject *old = tmp_tuple_unpack_3__source_iter.object;
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_18;
Py_DECREF( old );
}
tmp_unpack_7 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_19 = UNPACK_PARAMETER_NEXT( tmp_unpack_7, 0 );
if ( tmp_assign_source_19 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 216;
goto try_finally_handler_4;
}
if (tmp_tuple_unpack_3__element_1.object == NULL)
{
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_19;
}
else
{
PyObject *old = tmp_tuple_unpack_3__element_1.object;
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_19;
Py_DECREF( old );
}
tmp_unpack_8 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_20 = UNPACK_PARAMETER_NEXT( tmp_unpack_8, 1 );
if ( tmp_assign_source_20 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 216;
goto try_finally_handler_4;
}
if (tmp_tuple_unpack_3__element_2.object == NULL)
{
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_20;
}
else
{
PyObject *old = tmp_tuple_unpack_3__element_2.object;
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_20;
Py_DECREF( old );
}
tmp_iterator_name_3 = tmp_tuple_unpack_3__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_3 ); assert( PyIter_Check( tmp_iterator_name_3 ) );
tmp_iterator_attempt_3 = (*Py_TYPE( tmp_iterator_name_3 )->tp_iternext)( tmp_iterator_name_3 );
if (likely( tmp_iterator_attempt_3 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_3 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
tmp_assign_source_21 = tmp_tuple_unpack_3__element_1.object;
if (var_ii.object == NULL)
{
var_ii.object = INCREASE_REFCOUNT( tmp_assign_source_21 );
}
else
{
PyObject *old = var_ii.object;
var_ii.object = INCREASE_REFCOUNT( tmp_assign_source_21 );
Py_DECREF( old );
}
tmp_assign_source_22 = tmp_tuple_unpack_3__element_2.object;
if (var_jj.object == NULL)
{
var_jj.object = INCREASE_REFCOUNT( tmp_assign_source_22 );
}
else
{
PyObject *old = var_jj.object;
var_jj.object = INCREASE_REFCOUNT( tmp_assign_source_22 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_3__source_iter.object );
tmp_tuple_unpack_3__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_1.object );
tmp_tuple_unpack_3__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_2.object );
tmp_tuple_unpack_3__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_3;
}
goto finally_end_3;
finally_end_3:;
tmp_int_arg_1 = var_ii.object;
if ( tmp_int_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 262169 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 218;
goto try_finally_handler_3;
}
tmp_assign_source_23 = PyNumber_Int( tmp_int_arg_1 );
if ( tmp_assign_source_23 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 218;
goto try_finally_handler_3;
}
if (var_ii.object == NULL)
{
var_ii.object = tmp_assign_source_23;
}
else
{
PyObject *old = var_ii.object;
var_ii.object = tmp_assign_source_23;
Py_DECREF( old );
}
tmp_int_arg_2 = var_jj.object;
if ( tmp_int_arg_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267360 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 219;
goto try_finally_handler_3;
}
tmp_assign_source_24 = PyNumber_Int( tmp_int_arg_2 );
if ( tmp_assign_source_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 219;
goto try_finally_handler_3;
}
if (var_jj.object == NULL)
{
var_jj.object = tmp_assign_source_24;
}
else
{
PyObject *old = var_jj.object;
var_jj.object = tmp_assign_source_24;
Py_DECREF( old );
}
// Tried code
tmp_called_5 = LOOKUP_BUILTIN( const_str_plain_divmod );
if ( tmp_called_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
tmp_binop_left_1 = var_ii.object;
tmp_binop_right_1 = var_i_start.object;
if ( tmp_binop_right_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267408 ], 53, 0 );
exception_tb = NULL;
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
tmp_call_arg_element_5 = BINARY_OPERATION_SUB( tmp_binop_left_1, tmp_binop_right_1 );
if ( tmp_call_arg_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
tmp_call_arg_element_6 = var_i_stride.object;
if ( tmp_call_arg_element_6 == NULL )
{
Py_DECREF( tmp_call_arg_element_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267461 ], 54, 0 );
exception_tb = NULL;
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
frame_function->f_lineno = 220;
tmp_iter_arg_5 = CALL_FUNCTION_WITH_ARGS2( tmp_called_5, tmp_call_arg_element_5, tmp_call_arg_element_6 );
Py_DECREF( tmp_call_arg_element_5 );
if ( tmp_iter_arg_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
tmp_assign_source_25 = MAKE_ITERATOR( tmp_iter_arg_5 );
Py_DECREF( tmp_iter_arg_5 );
if ( tmp_assign_source_25 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
if (tmp_tuple_unpack_4__source_iter.object == NULL)
{
tmp_tuple_unpack_4__source_iter.object = tmp_assign_source_25;
}
else
{
PyObject *old = tmp_tuple_unpack_4__source_iter.object;
tmp_tuple_unpack_4__source_iter.object = tmp_assign_source_25;
Py_DECREF( old );
}
tmp_unpack_9 = tmp_tuple_unpack_4__source_iter.object;
tmp_assign_source_26 = UNPACK_PARAMETER_NEXT( tmp_unpack_9, 0 );
if ( tmp_assign_source_26 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
if (tmp_tuple_unpack_4__element_1.object == NULL)
{
tmp_tuple_unpack_4__element_1.object = tmp_assign_source_26;
}
else
{
PyObject *old = tmp_tuple_unpack_4__element_1.object;
tmp_tuple_unpack_4__element_1.object = tmp_assign_source_26;
Py_DECREF( old );
}
tmp_unpack_10 = tmp_tuple_unpack_4__source_iter.object;
tmp_assign_source_27 = UNPACK_PARAMETER_NEXT( tmp_unpack_10, 1 );
if ( tmp_assign_source_27 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 220;
goto try_finally_handler_5;
}
if (tmp_tuple_unpack_4__element_2.object == NULL)
{
tmp_tuple_unpack_4__element_2.object = tmp_assign_source_27;
}
else
{
PyObject *old = tmp_tuple_unpack_4__element_2.object;
tmp_tuple_unpack_4__element_2.object = tmp_assign_source_27;
Py_DECREF( old );
}
tmp_iterator_name_4 = tmp_tuple_unpack_4__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_4 ); assert( PyIter_Check( tmp_iterator_name_4 ) );
tmp_iterator_attempt_4 = (*Py_TYPE( tmp_iterator_name_4 )->tp_iternext)( tmp_iterator_name_4 );
if (likely( tmp_iterator_attempt_4 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_5;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_4 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_5;
}
tmp_assign_source_28 = tmp_tuple_unpack_4__element_1.object;
if (var_a.object == NULL)
{
var_a.object = INCREASE_REFCOUNT( tmp_assign_source_28 );
}
else
{
PyObject *old = var_a.object;
var_a.object = INCREASE_REFCOUNT( tmp_assign_source_28 );
Py_DECREF( old );
}
tmp_assign_source_29 = tmp_tuple_unpack_4__element_2.object;
if (var_ra.object == NULL)
{
var_ra.object = INCREASE_REFCOUNT( tmp_assign_source_29 );
}
else
{
PyObject *old = var_ra.object;
var_ra.object = INCREASE_REFCOUNT( tmp_assign_source_29 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_4__source_iter.object );
tmp_tuple_unpack_4__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_4__element_1.object );
tmp_tuple_unpack_4__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_4__element_2.object );
tmp_tuple_unpack_4__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_3;
}
goto finally_end_4;
finally_end_4:;
tmp_continue_1 = false;
// Tried code
tmp_cond_value_1 = NULL;
// Tried code
tmp_compexpr_left_1 = var_a.object;
if ( tmp_compexpr_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 221;
goto try_finally_handler_7;
}
tmp_compexpr_right_1 = const_int_0;
tmp_assign_source_30 = RICH_COMPARE_LT( tmp_compexpr_left_1, tmp_compexpr_right_1 );
if ( tmp_assign_source_30 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 221;
goto try_finally_handler_7;
}
if (tmp_or_1__value_2.object == NULL)
{
tmp_or_1__value_2.object = tmp_assign_source_30;
}
else
{
PyObject *old = tmp_or_1__value_2.object;
tmp_or_1__value_2.object = tmp_assign_source_30;
Py_DECREF( old );
}
tmp_cond_value_2 = tmp_or_1__value_2.object;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 221;
goto try_finally_handler_7;
}
if (tmp_cond_truth_2 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_cond_value_1 = tmp_or_1__value_2.object;
Py_INCREF( tmp_cond_value_1 );
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_1 = NULL;
// Tried code
tmp_cond_value_1 = NULL;
// Tried code
tmp_result = tmp_or_1__value_2.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_2.object );
tmp_or_1__value_2.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_1 = NULL;
// Tried code
tmp_compexpr_left_2 = var_a.object;
if ( tmp_compexpr_left_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 221;
goto try_finally_handler_10;
}
tmp_subscr_target_1 = par_shape.object;
if ( tmp_subscr_target_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5018 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 221;
goto try_finally_handler_10;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_compexpr_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
if ( tmp_compexpr_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 221;
goto try_finally_handler_10;
}
tmp_assign_source_31 = RICH_COMPARE_GE( tmp_compexpr_left_2, tmp_compexpr_right_2 );
Py_DECREF( tmp_compexpr_right_2 );
if ( tmp_assign_source_31 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 221;
goto try_finally_handler_10;
}
if (tmp_or_1__value_1.object == NULL)
{
tmp_or_1__value_1.object = tmp_assign_source_31;
}
else
{
PyObject *old = tmp_or_1__value_1.object;
tmp_or_1__value_1.object = tmp_assign_source_31;
Py_DECREF( old );
}
tmp_cond_value_3 = tmp_or_1__value_1.object;
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 221;
goto try_finally_handler_10;
}
if (tmp_cond_truth_3 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_cond_value_1 = tmp_or_1__value_1.object;
Py_INCREF( tmp_cond_value_1 );
goto condexpr_end_2;
condexpr_false_2:;
tmp_cond_value_1 = NULL;
// Tried code
tmp_result = tmp_or_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_3 = var_ra.object;
if ( tmp_compexpr_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267515 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 221;
goto try_finally_handler_11;
}
tmp_compexpr_right_3 = const_int_0;
tmp_cond_value_1 = RICH_COMPARE_NE( tmp_compexpr_left_3, tmp_compexpr_right_3 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 221;
goto try_finally_handler_11;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_11:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_10;
}
goto finally_end_5;
finally_end_5:;
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_10:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto try_finally_handler_9;
}
goto finally_end_6;
finally_end_6:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_9:;
exception_keeper_type_7 = exception_type;
exception_keeper_value_7 = exception_value;
exception_keeper_tb_7 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_7 != NULL )
{
exception_type = exception_keeper_type_7;
exception_value = exception_keeper_value_7;
exception_tb = exception_keeper_tb_7;
goto try_finally_handler_8;
}
goto finally_end_7;
finally_end_7:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_8:;
exception_keeper_type_8 = exception_type;
exception_keeper_value_8 = exception_value;
exception_keeper_tb_8 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_8 != NULL )
{
exception_type = exception_keeper_type_8;
exception_value = exception_keeper_value_8;
exception_tb = exception_keeper_tb_8;
goto try_finally_handler_7;
}
goto finally_end_8;
finally_end_8:;
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_7:;
exception_keeper_type_9 = exception_type;
exception_keeper_value_9 = exception_value;
exception_keeper_tb_9 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_9 != NULL )
{
exception_type = exception_keeper_type_9;
exception_value = exception_keeper_value_9;
exception_tb = exception_keeper_tb_9;
goto try_finally_handler_6;
}
goto finally_end_9;
finally_end_9:;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 221;
goto try_finally_handler_6;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_continue_1 = true;
goto try_finally_handler_start_1;
branch_no_1:;
try_finally_handler_start_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_10 = exception_type;
exception_keeper_value_10 = exception_value;
exception_keeper_tb_10 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_6 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_2.object );
tmp_or_1__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_6;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_10 != NULL )
{
exception_type = exception_keeper_type_10;
exception_value = exception_keeper_value_10;
exception_tb = exception_keeper_tb_10;
goto try_finally_handler_3;
}
// Continue if entered via continue.
if ( tmp_continue_1 )
{
goto loop_start_1;
}
goto finally_end_10;
finally_end_10:;
// Tried code
tmp_called_6 = LOOKUP_BUILTIN( const_str_plain_divmod );
if ( tmp_called_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
tmp_binop_left_2 = var_jj.object;
if ( tmp_binop_left_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267360 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
tmp_binop_right_2 = var_j_start.object;
if ( tmp_binop_right_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267563 ], 53, 0 );
exception_tb = NULL;
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
tmp_call_arg_element_7 = BINARY_OPERATION_SUB( tmp_binop_left_2, tmp_binop_right_2 );
if ( tmp_call_arg_element_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
tmp_call_arg_element_8 = var_j_stride.object;
if ( tmp_call_arg_element_8 == NULL )
{
Py_DECREF( tmp_call_arg_element_7 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267616 ], 54, 0 );
exception_tb = NULL;
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
frame_function->f_lineno = 223;
tmp_iter_arg_6 = CALL_FUNCTION_WITH_ARGS2( tmp_called_6, tmp_call_arg_element_7, tmp_call_arg_element_8 );
Py_DECREF( tmp_call_arg_element_7 );
if ( tmp_iter_arg_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
tmp_assign_source_32 = MAKE_ITERATOR( tmp_iter_arg_6 );
Py_DECREF( tmp_iter_arg_6 );
if ( tmp_assign_source_32 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
if (tmp_tuple_unpack_5__source_iter.object == NULL)
{
tmp_tuple_unpack_5__source_iter.object = tmp_assign_source_32;
}
else
{
PyObject *old = tmp_tuple_unpack_5__source_iter.object;
tmp_tuple_unpack_5__source_iter.object = tmp_assign_source_32;
Py_DECREF( old );
}
tmp_unpack_11 = tmp_tuple_unpack_5__source_iter.object;
tmp_assign_source_33 = UNPACK_PARAMETER_NEXT( tmp_unpack_11, 0 );
if ( tmp_assign_source_33 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
if (tmp_tuple_unpack_5__element_1.object == NULL)
{
tmp_tuple_unpack_5__element_1.object = tmp_assign_source_33;
}
else
{
PyObject *old = tmp_tuple_unpack_5__element_1.object;
tmp_tuple_unpack_5__element_1.object = tmp_assign_source_33;
Py_DECREF( old );
}
tmp_unpack_12 = tmp_tuple_unpack_5__source_iter.object;
tmp_assign_source_34 = UNPACK_PARAMETER_NEXT( tmp_unpack_12, 1 );
if ( tmp_assign_source_34 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 223;
goto try_finally_handler_12;
}
if (tmp_tuple_unpack_5__element_2.object == NULL)
{
tmp_tuple_unpack_5__element_2.object = tmp_assign_source_34;
}
else
{
PyObject *old = tmp_tuple_unpack_5__element_2.object;
tmp_tuple_unpack_5__element_2.object = tmp_assign_source_34;
Py_DECREF( old );
}
tmp_iterator_name_5 = tmp_tuple_unpack_5__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_5 ); assert( PyIter_Check( tmp_iterator_name_5 ) );
tmp_iterator_attempt_5 = (*Py_TYPE( tmp_iterator_name_5 )->tp_iternext)( tmp_iterator_name_5 );
if (likely( tmp_iterator_attempt_5 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_12;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_5 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_12;
}
tmp_assign_source_35 = tmp_tuple_unpack_5__element_1.object;
if (var_b.object == NULL)
{
var_b.object = INCREASE_REFCOUNT( tmp_assign_source_35 );
}
else
{
PyObject *old = var_b.object;
var_b.object = INCREASE_REFCOUNT( tmp_assign_source_35 );
Py_DECREF( old );
}
tmp_assign_source_36 = tmp_tuple_unpack_5__element_2.object;
if (var_rb.object == NULL)
{
var_rb.object = INCREASE_REFCOUNT( tmp_assign_source_36 );
}
else
{
PyObject *old = var_rb.object;
var_rb.object = INCREASE_REFCOUNT( tmp_assign_source_36 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_12:;
exception_keeper_type_11 = exception_type;
exception_keeper_value_11 = exception_value;
exception_keeper_tb_11 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_7 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_5__source_iter.object );
tmp_tuple_unpack_5__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_5__element_1.object );
tmp_tuple_unpack_5__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_5__element_2.object );
tmp_tuple_unpack_5__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_7;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_11 != NULL )
{
exception_type = exception_keeper_type_11;
exception_value = exception_keeper_value_11;
exception_tb = exception_keeper_tb_11;
goto try_finally_handler_3;
}
goto finally_end_11;
finally_end_11:;
tmp_continue_2 = false;
// Tried code
tmp_cond_value_4 = NULL;
// Tried code
tmp_compexpr_left_4 = var_b.object;
if ( tmp_compexpr_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5951 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 224;
goto try_finally_handler_14;
}
tmp_compexpr_right_4 = const_int_0;
tmp_assign_source_37 = RICH_COMPARE_LT( tmp_compexpr_left_4, tmp_compexpr_right_4 );
if ( tmp_assign_source_37 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 224;
goto try_finally_handler_14;
}
if (tmp_or_2__value_2.object == NULL)
{
tmp_or_2__value_2.object = tmp_assign_source_37;
}
else
{
PyObject *old = tmp_or_2__value_2.object;
tmp_or_2__value_2.object = tmp_assign_source_37;
Py_DECREF( old );
}
tmp_cond_value_5 = tmp_or_2__value_2.object;
tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 );
if ( tmp_cond_truth_5 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 224;
goto try_finally_handler_14;
}
if (tmp_cond_truth_5 == 1)
{
goto condexpr_true_3;
}
else
{
goto condexpr_false_3;
}
condexpr_true_3:;
tmp_cond_value_4 = tmp_or_2__value_2.object;
Py_INCREF( tmp_cond_value_4 );
goto condexpr_end_3;
condexpr_false_3:;
tmp_cond_value_4 = NULL;
// Tried code
tmp_cond_value_4 = NULL;
// Tried code
tmp_result = tmp_or_2__value_2.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_2__value_2.object );
tmp_or_2__value_2.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_4 = NULL;
// Tried code
tmp_compexpr_left_5 = var_b.object;
if ( tmp_compexpr_left_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5951 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 224;
goto try_finally_handler_17;
}
tmp_subscr_target_2 = par_shape.object;
if ( tmp_subscr_target_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5018 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 224;
goto try_finally_handler_17;
}
tmp_subscr_subscript_2 = const_int_pos_1;
tmp_compexpr_right_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_compexpr_right_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 224;
goto try_finally_handler_17;
}
tmp_assign_source_38 = RICH_COMPARE_GE( tmp_compexpr_left_5, tmp_compexpr_right_5 );
Py_DECREF( tmp_compexpr_right_5 );
if ( tmp_assign_source_38 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 224;
goto try_finally_handler_17;
}
if (tmp_or_2__value_1.object == NULL)
{
tmp_or_2__value_1.object = tmp_assign_source_38;
}
else
{
PyObject *old = tmp_or_2__value_1.object;
tmp_or_2__value_1.object = tmp_assign_source_38;
Py_DECREF( old );
}
tmp_cond_value_6 = tmp_or_2__value_1.object;
tmp_cond_truth_6 = CHECK_IF_TRUE( tmp_cond_value_6 );
if ( tmp_cond_truth_6 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 224;
goto try_finally_handler_17;
}
if (tmp_cond_truth_6 == 1)
{
goto condexpr_true_4;
}
else
{
goto condexpr_false_4;
}
condexpr_true_4:;
tmp_cond_value_4 = tmp_or_2__value_1.object;
Py_INCREF( tmp_cond_value_4 );
goto condexpr_end_4;
condexpr_false_4:;
tmp_cond_value_4 = NULL;
// Tried code
tmp_result = tmp_or_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_6 = var_rb.object;
if ( tmp_compexpr_left_6 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267670 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 224;
goto try_finally_handler_18;
}
tmp_compexpr_right_6 = const_int_0;
tmp_cond_value_4 = RICH_COMPARE_NE( tmp_compexpr_left_6, tmp_compexpr_right_6 );
if ( tmp_cond_value_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 224;
goto try_finally_handler_18;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_18:;
exception_keeper_type_12 = exception_type;
exception_keeper_value_12 = exception_value;
exception_keeper_tb_12 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_12 != NULL )
{
exception_type = exception_keeper_type_12;
exception_value = exception_keeper_value_12;
exception_tb = exception_keeper_tb_12;
goto try_finally_handler_17;
}
goto finally_end_12;
finally_end_12:;
condexpr_end_4:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_17:;
exception_keeper_type_13 = exception_type;
exception_keeper_value_13 = exception_value;
exception_keeper_tb_13 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_13 != NULL )
{
exception_type = exception_keeper_type_13;
exception_value = exception_keeper_value_13;
exception_tb = exception_keeper_tb_13;
goto try_finally_handler_16;
}
goto finally_end_13;
finally_end_13:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_16:;
exception_keeper_type_14 = exception_type;
exception_keeper_value_14 = exception_value;
exception_keeper_tb_14 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_14 != NULL )
{
exception_type = exception_keeper_type_14;
exception_value = exception_keeper_value_14;
exception_tb = exception_keeper_tb_14;
goto try_finally_handler_15;
}
goto finally_end_14;
finally_end_14:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_15:;
exception_keeper_type_15 = exception_type;
exception_keeper_value_15 = exception_value;
exception_keeper_tb_15 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_8 = frame_function->f_lineno;
Py_XDECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_8;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_15 != NULL )
{
exception_type = exception_keeper_type_15;
exception_value = exception_keeper_value_15;
exception_tb = exception_keeper_tb_15;
goto try_finally_handler_14;
}
goto finally_end_15;
finally_end_15:;
condexpr_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_14:;
exception_keeper_type_16 = exception_type;
exception_keeper_value_16 = exception_value;
exception_keeper_tb_16 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_16 != NULL )
{
exception_type = exception_keeper_type_16;
exception_value = exception_keeper_value_16;
exception_tb = exception_keeper_tb_16;
goto try_finally_handler_13;
}
goto finally_end_16;
finally_end_16:;
tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 );
if ( tmp_cond_truth_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_4 );
frame_function->f_lineno = 224;
goto try_finally_handler_13;
}
Py_DECREF( tmp_cond_value_4 );
if (tmp_cond_truth_4 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_continue_2 = true;
goto try_finally_handler_start_2;
branch_no_2:;
try_finally_handler_start_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_13:;
exception_keeper_type_17 = exception_type;
exception_keeper_value_17 = exception_value;
exception_keeper_tb_17 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_9 = frame_function->f_lineno;
Py_XDECREF( tmp_or_2__value_2.object );
tmp_or_2__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_9;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_17 != NULL )
{
exception_type = exception_keeper_type_17;
exception_value = exception_keeper_value_17;
exception_tb = exception_keeper_tb_17;
goto try_finally_handler_3;
}
// Continue if entered via continue.
if ( tmp_continue_2 )
{
goto loop_start_1;
}
goto finally_end_17;
finally_end_17:;
tmp_source_name_3 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 226;
goto try_finally_handler_3;
}
tmp_called_7 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain___setitem__ );
if ( tmp_called_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 226;
goto try_finally_handler_3;
}
tmp_call_arg_element_9 = var_newdok.object;
if ( tmp_call_arg_element_9 == NULL )
{
Py_DECREF( tmp_called_7 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267308 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 226;
goto try_finally_handler_3;
}
tmp_call_arg_element_10 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_a.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5854 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 226;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_arg_element_10, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_b.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5951 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 226;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_arg_element_10, 1, tmp_tuple_element_2 );
tmp_source_name_4 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
tmp_called_8 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain___getitem__ );
if ( tmp_called_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
tmp_call_arg_element_12 = par_self.object;
if ( tmp_call_arg_element_12 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
Py_DECREF( tmp_called_8 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
tmp_call_arg_element_13 = PyTuple_New( 2 );
tmp_tuple_element_3 = var_ii.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
Py_DECREF( tmp_called_8 );
Py_DECREF( tmp_call_arg_element_13 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 262169 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_call_arg_element_13, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = var_jj.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
Py_DECREF( tmp_called_8 );
Py_DECREF( tmp_call_arg_element_13 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267360 ], 48, 0 );
exception_tb = NULL;
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_call_arg_element_13, 1, tmp_tuple_element_3 );
frame_function->f_lineno = 227;
tmp_call_arg_element_11 = CALL_FUNCTION_WITH_ARGS2( tmp_called_8, tmp_call_arg_element_12, tmp_call_arg_element_13 );
Py_DECREF( tmp_called_8 );
Py_DECREF( tmp_call_arg_element_13 );
if ( tmp_call_arg_element_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
frame_function->f_lineno = 227;
tmp_unused = CALL_FUNCTION_WITH_ARGS3( tmp_called_7, tmp_call_arg_element_9, tmp_call_arg_element_10, tmp_call_arg_element_11 );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_arg_element_10 );
Py_DECREF( tmp_call_arg_element_11 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 227;
goto try_finally_handler_3;
}
Py_DECREF( tmp_unused );
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 216;
goto try_finally_handler_3;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_18 = exception_type;
exception_keeper_value_18 = exception_value;
exception_keeper_tb_18 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_10 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_10;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_18 != NULL )
{
exception_type = exception_keeper_type_18;
exception_value = exception_keeper_value_18;
exception_tb = exception_keeper_tb_18;
goto frame_exception_exit_1;
}
goto finally_end_18;
finally_end_18:;
tmp_return_value = var_newdok.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267308 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 229;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_i_start.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_start,
var_i_start.object
);
}
if ((var_i_stop.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_stop,
var_i_stop.object
);
}
if ((var_i_stride.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_stride,
var_i_stride.object
);
}
if ((var_j_start.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_start,
var_j_start.object
);
}
if ((var_j_stop.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_stop,
var_j_stop.object
);
}
if ((var_j_stride.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_stride,
var_j_stride.object
);
}
if ((var_newdok.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_newdok,
var_newdok.object
);
}
if ((var_ii.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_ii,
var_ii.object
);
}
if ((var_jj.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_jj,
var_jj.object
);
}
if ((var_a.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_a,
var_a.object
);
}
if ((var_ra.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_ra,
var_ra.object
);
}
if ((var_b.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_b,
var_b.object
);
}
if ((var_rb.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_rb,
var_rb.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_i_indices.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i_indices,
par_i_indices.object
);
}
if ((par_j_indices.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j_indices,
par_j_indices.object
);
}
if ((par_shape.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_shape,
par_shape.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_i_indices = NULL;
PyObject *_python_par_j_indices = NULL;
PyObject *_python_par_shape = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_getitem_ranges() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_i_indices == key )
{
assert( _python_par_i_indices == NULL );
_python_par_i_indices = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_j_indices == key )
{
assert( _python_par_j_indices == NULL );
_python_par_j_indices = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_shape == key )
{
assert( _python_par_shape == NULL );
_python_par_shape = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_i_indices, key ) == 1 )
{
assert( _python_par_i_indices == NULL );
_python_par_i_indices = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_j_indices, key ) == 1 )
{
assert( _python_par_j_indices == NULL );
_python_par_j_indices = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_shape, key ) == 1 )
{
assert( _python_par_shape == NULL );
_python_par_shape = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_getitem_ranges() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 4 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 4 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 4 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_i_indices != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_i_indices = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_i_indices == NULL )
{
if ( 1 + self->m_defaults_given >= 4 )
{
_python_par_i_indices = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 4 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 2 < args_given ))
{
if (unlikely( _python_par_j_indices != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 2 );
goto error_exit;
}
_python_par_j_indices = INCREASE_REFCOUNT( args[ 2 ] );
}
else if ( _python_par_j_indices == NULL )
{
if ( 2 + self->m_defaults_given >= 4 )
{
_python_par_j_indices = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 2 - 4 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 3 < args_given ))
{
if (unlikely( _python_par_shape != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 3 );
goto error_exit;
}
_python_par_shape = INCREASE_REFCOUNT( args[ 3 ] );
}
else if ( _python_par_shape == NULL )
{
if ( 3 + self->m_defaults_given >= 4 )
{
_python_par_shape = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 3 - 4 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_i_indices == NULL || _python_par_j_indices == NULL || _python_par_shape == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_i_indices, _python_par_j_indices, _python_par_shape };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_i_indices, _python_par_j_indices, _python_par_shape );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_i_indices );
Py_XDECREF( _python_par_j_indices );
Py_XDECREF( _python_par_shape );
return NULL;
}
static PyObject *dparse_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 4 )
{
return impl_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ), INCREASE_REFCOUNT( args[ 2 ] ), INCREASE_REFCOUNT( args[ 3 ] ) );
}
else
{
PyObject *result = fparse_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_index, PyObject *_python_par_x )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_index; par_index.object = _python_par_index;
PyObjectLocalVariable par_x; par_x.object = _python_par_x;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectLocalVariable var_v;
PyObjectLocalVariable var__;
PyObjectLocalVariable var_min_i;
PyObjectLocalVariable var_min_j;
PyObjectLocalVariable var_zeroes;
PyObjectLocalVariable var_key;
PyObjectTempVariable tmp_and_1__value_1;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_comparison_1__value_2;
PyObjectTempVariable tmp_and_2__value_1;
PyObjectTempVariable tmp_comparison_2__value_2;
PyObjectTempVariable tmp_and_3__value_1;
PyObjectTempVariable tmp_and_4__value_1;
PyObjectTempVariable tmp_and_4__value_2;
PyObjectTempVariable tmp_and_4__value_3;
PyObjectTempVariable tmp_and_5__value_1;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObjectTempVariable tmp_tuple_unpack_3__source_iter;
PyObjectTempVariable tmp_tuple_unpack_3__element_1;
PyObjectTempVariable tmp_tuple_unpack_3__element_2;
PyObjectTempVariable tmp_tuple_unpack_4__source_iter;
PyObjectTempVariable tmp_tuple_unpack_4__element_1;
PyObjectTempVariable tmp_tuple_unpack_4__element_2;
PyObjectTempVariable tmp_or_1__value_1;
PyObjectTempVariable tmp_inplace_assign_1__inplace_target;
PyObjectTempVariable tmp_inplace_assign_1__inplace_subscript;
PyObjectTempVariable tmp_or_2__value_1;
PyObjectTempVariable tmp_inplace_assign_2__inplace_target;
PyObjectTempVariable tmp_inplace_assign_2__inplace_subscript;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *exception_keeper_type_7;
PyObject *exception_keeper_value_7;
PyTracebackObject *exception_keeper_tb_7;
PyObject *exception_keeper_type_8;
PyObject *exception_keeper_value_8;
PyTracebackObject *exception_keeper_tb_8;
PyObject *exception_keeper_type_9;
PyObject *exception_keeper_value_9;
PyTracebackObject *exception_keeper_tb_9;
PyObject *exception_keeper_type_10;
PyObject *exception_keeper_value_10;
PyTracebackObject *exception_keeper_tb_10;
PyObject *exception_keeper_type_11;
PyObject *exception_keeper_value_11;
PyTracebackObject *exception_keeper_tb_11;
PyObject *exception_keeper_type_12;
PyObject *exception_keeper_value_12;
PyTracebackObject *exception_keeper_tb_12;
PyObject *exception_keeper_type_13;
PyObject *exception_keeper_value_13;
PyTracebackObject *exception_keeper_tb_13;
PyObject *exception_keeper_type_14;
PyObject *exception_keeper_value_14;
PyTracebackObject *exception_keeper_tb_14;
PyObject *exception_keeper_type_15;
PyObject *exception_keeper_value_15;
PyTracebackObject *exception_keeper_tb_15;
PyObject *exception_keeper_type_16;
PyObject *exception_keeper_value_16;
PyTracebackObject *exception_keeper_tb_16;
PyObject *exception_keeper_type_17;
PyObject *exception_keeper_value_17;
PyTracebackObject *exception_keeper_tb_17;
PyObject *exception_keeper_type_18;
PyObject *exception_keeper_value_18;
PyTracebackObject *exception_keeper_tb_18;
PyObject *exception_keeper_type_19;
PyObject *exception_keeper_value_19;
PyTracebackObject *exception_keeper_tb_19;
PyObject *exception_keeper_type_20;
PyObject *exception_keeper_value_20;
PyTracebackObject *exception_keeper_tb_20;
PyObject *exception_keeper_type_21;
PyObject *exception_keeper_value_21;
PyTracebackObject *exception_keeper_tb_21;
PyObject *exception_keeper_type_22;
PyObject *exception_keeper_value_22;
PyTracebackObject *exception_keeper_tb_22;
PyObject *exception_keeper_type_23;
PyObject *exception_keeper_value_23;
PyTracebackObject *exception_keeper_tb_23;
PyObject *exception_keeper_type_24;
PyObject *exception_keeper_value_24;
PyTracebackObject *exception_keeper_tb_24;
PyObject *exception_keeper_type_25;
PyObject *exception_keeper_value_25;
PyTracebackObject *exception_keeper_tb_25;
PyObject *exception_keeper_type_26;
PyObject *exception_keeper_value_26;
PyTracebackObject *exception_keeper_tb_26;
PyObject *exception_keeper_type_27;
PyObject *exception_keeper_value_27;
PyTracebackObject *exception_keeper_tb_27;
PyObject *exception_keeper_type_28;
PyObject *exception_keeper_value_28;
PyTracebackObject *exception_keeper_tb_28;
PyObject *exception_keeper_type_29;
PyObject *exception_keeper_value_29;
PyTracebackObject *exception_keeper_tb_29;
PyObject *exception_keeper_type_30;
PyObject *exception_keeper_value_30;
PyTracebackObject *exception_keeper_tb_30;
PyObject *exception_keeper_type_31;
PyObject *exception_keeper_value_31;
PyTracebackObject *exception_keeper_tb_31;
PyObject *exception_keeper_type_32;
PyObject *exception_keeper_value_32;
PyTracebackObject *exception_keeper_tb_32;
PyObject *exception_keeper_type_33;
PyObject *exception_keeper_value_33;
PyTracebackObject *exception_keeper_tb_33;
PyObject *exception_keeper_type_34;
PyObject *exception_keeper_value_34;
PyTracebackObject *exception_keeper_tb_34;
PyObject *exception_keeper_type_35;
PyObject *exception_keeper_value_35;
PyTracebackObject *exception_keeper_tb_35;
PyObject *exception_keeper_type_36;
PyObject *exception_keeper_value_36;
PyTracebackObject *exception_keeper_tb_36;
PyObject *exception_keeper_type_37;
PyObject *exception_keeper_value_37;
PyTracebackObject *exception_keeper_tb_37;
PyObject *exception_keeper_type_38;
PyObject *exception_keeper_value_38;
PyTracebackObject *exception_keeper_tb_38;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscribed_2;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subscript_2;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_ass_subvalue_2;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_assign_source_25;
PyObject *tmp_assign_source_26;
PyObject *tmp_assign_source_27;
PyObject *tmp_assign_source_28;
PyObject *tmp_assign_source_29;
PyObject *tmp_assign_source_30;
PyObject *tmp_assign_source_31;
PyObject *tmp_assign_source_32;
PyObject *tmp_assign_source_33;
PyObject *tmp_assign_source_34;
PyObject *tmp_assign_source_35;
PyObject *tmp_assign_source_36;
PyObject *tmp_assign_source_37;
PyObject *tmp_assign_source_38;
PyObject *tmp_assign_source_39;
PyObject *tmp_assign_source_40;
PyObject *tmp_assign_source_41;
PyObject *tmp_assign_source_42;
PyObject *tmp_assign_source_43;
PyObject *tmp_assign_source_44;
PyObject *tmp_assign_source_45;
PyObject *tmp_assign_source_46;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_left_3;
PyObject *tmp_binop_left_4;
PyObject *tmp_binop_left_5;
PyObject *tmp_binop_left_6;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_binop_right_3;
PyObject *tmp_binop_right_4;
PyObject *tmp_binop_right_5;
PyObject *tmp_binop_right_6;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_call_arg_element_6;
PyObject *tmp_call_arg_element_7;
PyObject *tmp_call_arg_element_8;
PyObject *tmp_call_arg_element_9;
PyObject *tmp_call_arg_element_10;
PyObject *tmp_call_arg_element_11;
PyObject *tmp_call_arg_element_12;
PyObject *tmp_call_arg_element_13;
PyObject *tmp_call_arg_element_14;
PyObject *tmp_call_arg_element_15;
PyObject *tmp_call_arg_element_16;
PyObject *tmp_call_arg_element_17;
PyObject *tmp_call_arg_element_18;
PyObject *tmp_call_arg_element_19;
PyObject *tmp_call_arg_element_20;
PyObject *tmp_call_arg_element_21;
PyObject *tmp_call_arg_element_22;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_kw_2;
PyObject *tmp_call_pos_1;
PyObject *tmp_call_pos_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_called_9;
PyObject *tmp_called_10;
PyObject *tmp_called_11;
PyObject *tmp_called_12;
PyObject *tmp_called_13;
PyObject *tmp_called_14;
PyObject *tmp_called_15;
PyObject *tmp_called_16;
PyObject *tmp_called_17;
PyObject *tmp_called_18;
PyObject *tmp_called_19;
PyObject *tmp_called_20;
PyObject *tmp_called_21;
PyObject *tmp_called_22;
PyObject *tmp_called_23;
PyObject *tmp_called_24;
int tmp_cmp_Eq_1;
int tmp_cmp_Eq_2;
int tmp_cmp_In_1;
int tmp_cmp_Lt_1;
int tmp_cmp_Lt_2;
int tmp_cmp_NotEq_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_left_3;
PyObject *tmp_compare_left_4;
PyObject *tmp_compare_left_5;
PyObject *tmp_compare_left_6;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
PyObject *tmp_compare_right_3;
PyObject *tmp_compare_right_4;
PyObject *tmp_compare_right_5;
PyObject *tmp_compare_right_6;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_left_2;
PyObject *tmp_compexpr_left_3;
PyObject *tmp_compexpr_left_4;
PyObject *tmp_compexpr_left_5;
PyObject *tmp_compexpr_left_6;
PyObject *tmp_compexpr_left_7;
PyObject *tmp_compexpr_left_8;
PyObject *tmp_compexpr_left_9;
PyObject *tmp_compexpr_left_10;
PyObject *tmp_compexpr_left_11;
PyObject *tmp_compexpr_left_12;
PyObject *tmp_compexpr_left_13;
PyObject *tmp_compexpr_left_14;
PyObject *tmp_compexpr_right_1;
PyObject *tmp_compexpr_right_2;
PyObject *tmp_compexpr_right_3;
PyObject *tmp_compexpr_right_4;
PyObject *tmp_compexpr_right_5;
PyObject *tmp_compexpr_right_6;
PyObject *tmp_compexpr_right_7;
PyObject *tmp_compexpr_right_8;
PyObject *tmp_compexpr_right_9;
PyObject *tmp_compexpr_right_10;
PyObject *tmp_compexpr_right_11;
PyObject *tmp_compexpr_right_12;
PyObject *tmp_compexpr_right_13;
PyObject *tmp_compexpr_right_14;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
int tmp_cond_truth_4;
int tmp_cond_truth_5;
int tmp_cond_truth_6;
int tmp_cond_truth_7;
int tmp_cond_truth_8;
int tmp_cond_truth_9;
int tmp_cond_truth_10;
int tmp_cond_truth_11;
int tmp_cond_truth_12;
int tmp_cond_truth_13;
int tmp_cond_truth_14;
int tmp_cond_truth_15;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_cond_value_4;
PyObject *tmp_cond_value_5;
PyObject *tmp_cond_value_6;
PyObject *tmp_cond_value_7;
PyObject *tmp_cond_value_8;
PyObject *tmp_cond_value_9;
PyObject *tmp_cond_value_10;
PyObject *tmp_cond_value_11;
PyObject *tmp_cond_value_12;
PyObject *tmp_cond_value_13;
PyObject *tmp_cond_value_14;
PyObject *tmp_cond_value_15;
PyObject *tmp_delsubscr_subscript_1;
PyObject *tmp_delsubscr_target_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_frame_locals;
PyObject *tmp_int_arg_1;
PyObject *tmp_int_arg_2;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_inst_1;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iter_arg_5;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_attempt_3;
PyObject *tmp_iterator_attempt_4;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_iterator_name_3;
PyObject *tmp_iterator_name_4;
PyObject *tmp_len_arg_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_make_exception_arg_2;
PyObject *tmp_make_exception_arg_3;
PyObject *tmp_next_source_1;
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_type_2;
PyObject *tmp_raise_type_3;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_source_name_12;
PyObject *tmp_source_name_13;
PyObject *tmp_source_name_14;
PyObject *tmp_source_name_15;
PyObject *tmp_source_name_16;
PyObject *tmp_source_name_17;
PyObject *tmp_source_name_18;
PyObject *tmp_source_name_19;
PyObject *tmp_source_name_20;
PyObject *tmp_source_name_21;
PyObject *tmp_source_name_22;
PyObject *tmp_source_name_23;
PyObject *tmp_source_name_24;
PyObject *tmp_source_name_25;
PyObject *tmp_source_name_26;
PyObject *tmp_source_name_27;
PyObject *tmp_source_name_28;
PyObject *tmp_source_name_29;
PyObject *tmp_source_name_30;
PyObject *tmp_source_name_31;
PyObject *tmp_source_name_32;
PyObject *tmp_source_name_33;
PyObject *tmp_source_name_34;
PyObject *tmp_source_name_35;
PyObject *tmp_source_name_36;
PyObject *tmp_source_name_37;
PyObject *tmp_source_name_38;
PyObject *tmp_source_name_39;
PyObject *tmp_source_name_40;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_subscript_3;
PyObject *tmp_subscr_subscript_4;
PyObject *tmp_subscr_subscript_5;
PyObject *tmp_subscr_subscript_6;
PyObject *tmp_subscr_subscript_7;
PyObject *tmp_subscr_subscript_8;
PyObject *tmp_subscr_subscript_9;
PyObject *tmp_subscr_subscript_10;
PyObject *tmp_subscr_subscript_11;
PyObject *tmp_subscr_subscript_12;
PyObject *tmp_subscr_subscript_13;
PyObject *tmp_subscr_subscript_14;
PyObject *tmp_subscr_subscript_15;
PyObject *tmp_subscr_subscript_16;
PyObject *tmp_subscr_subscript_17;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_subscr_target_3;
PyObject *tmp_subscr_target_4;
PyObject *tmp_subscr_target_5;
PyObject *tmp_subscr_target_6;
PyObject *tmp_subscr_target_7;
PyObject *tmp_subscr_target_8;
PyObject *tmp_subscr_target_9;
PyObject *tmp_subscr_target_10;
PyObject *tmp_subscr_target_11;
PyObject *tmp_subscr_target_12;
PyObject *tmp_subscr_target_13;
PyObject *tmp_subscr_target_14;
PyObject *tmp_subscr_target_15;
PyObject *tmp_subscr_target_16;
PyObject *tmp_subscr_target_17;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
int tmp_tried_lineno_6;
int tmp_tried_lineno_7;
int tmp_tried_lineno_8;
int tmp_tried_lineno_9;
int tmp_tried_lineno_10;
int tmp_tried_lineno_11;
int tmp_tried_lineno_12;
int tmp_tried_lineno_13;
int tmp_tried_lineno_14;
int tmp_tried_lineno_15;
int tmp_tried_lineno_16;
int tmp_tried_lineno_17;
int tmp_tried_lineno_18;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
PyObject *tmp_tuple_element_5;
PyObject *tmp_unary_arg_1;
PyObject *tmp_unary_arg_2;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
PyObject *tmp_unpack_5;
PyObject *tmp_unpack_6;
PyObject *tmp_unpack_7;
PyObject *tmp_unpack_8;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_d52d68a23d0d0e26816fc437e7073518, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_cond_value_1 = NULL;
// Tried code
tmp_isinstance_inst_1 = par_index.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 25672 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 232;
goto try_finally_handler_2;
}
tmp_isinstance_cls_1 = LOOKUP_BUILTIN( const_str_plain_tuple );
if ( tmp_isinstance_cls_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 232;
goto try_finally_handler_2;
}
tmp_assign_source_1 = BUILTIN_ISINSTANCE( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 232;
goto try_finally_handler_2;
}
assert( tmp_and_1__value_1.object == NULL );
tmp_and_1__value_1.object = INCREASE_REFCOUNT( tmp_assign_source_1 );
tmp_cond_value_2 = tmp_and_1__value_1.object;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 232;
goto try_finally_handler_2;
}
if (tmp_cond_truth_2 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_cond_value_1 = NULL;
// Tried code
tmp_result = tmp_and_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_len_arg_1 = par_index.object;
if ( tmp_len_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 25672 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 232;
goto try_finally_handler_3;
}
tmp_compexpr_left_1 = BUILTIN_LEN( tmp_len_arg_1 );
if ( tmp_compexpr_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 232;
goto try_finally_handler_3;
}
tmp_compexpr_right_1 = const_int_pos_2;
tmp_cond_value_1 = RICH_COMPARE_EQ( tmp_compexpr_left_1, tmp_compexpr_right_1 );
Py_DECREF( tmp_compexpr_left_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 232;
goto try_finally_handler_3;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_2;
}
goto finally_end_1;
finally_end_1:;
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_1 = tmp_and_1__value_1.object;
Py_INCREF( tmp_cond_value_1 );
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_1;
}
goto finally_end_2;
finally_end_2:;
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 232;
goto try_finally_handler_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
// Tried code
tmp_iter_arg_1 = par_index.object;
if ( tmp_iter_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 25672 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 234;
goto try_finally_handler_4;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 234;
goto try_finally_handler_4;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_2;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 234;
goto try_finally_handler_4;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_3;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 234;
goto try_finally_handler_4;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_4;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
tmp_assign_source_5 = tmp_tuple_unpack_1__element_1.object;
assert( var_i.object == NULL );
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
tmp_assign_source_6 = tmp_tuple_unpack_1__element_2.object;
assert( var_j.object == NULL );
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_1;
}
goto finally_end_3;
finally_end_3:;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260058 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 235;
goto try_finally_handler_6;
}
tmp_call_arg_element_1 = var_i.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 235;
goto try_finally_handler_6;
}
frame_function->f_lineno = 235;
tmp_assign_source_7 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 235;
goto try_finally_handler_6;
}
assert( tmp_and_4__value_3.object == NULL );
tmp_and_4__value_3.object = tmp_assign_source_7;
tmp_cond_value_4 = tmp_and_4__value_3.object;
tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 );
if ( tmp_cond_truth_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 235;
goto try_finally_handler_6;
}
if (tmp_cond_truth_4 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_and_4__value_3.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_4__value_3.object );
tmp_and_4__value_3.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_3 = NULL;
// Tried code
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isintlike );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260058 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 235;
goto try_finally_handler_9;
}
tmp_call_arg_element_2 = var_j.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 235;
goto try_finally_handler_9;
}
frame_function->f_lineno = 235;
tmp_assign_source_8 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 235;
goto try_finally_handler_9;
}
assert( tmp_and_4__value_2.object == NULL );
tmp_and_4__value_2.object = tmp_assign_source_8;
tmp_cond_value_5 = tmp_and_4__value_2.object;
tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 );
if ( tmp_cond_truth_5 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 235;
goto try_finally_handler_9;
}
if (tmp_cond_truth_5 == 1)
{
goto condexpr_true_3;
}
else
{
goto condexpr_false_3;
}
condexpr_true_3:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_and_4__value_2.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_4__value_2.object );
tmp_and_4__value_2.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_3 = NULL;
// Tried code
tmp_assign_source_9 = NULL;
// Tried code
tmp_assign_source_9 = NULL;
// Tried code
tmp_assign_source_9 = NULL;
// Tried code
tmp_compexpr_left_2 = const_int_0;
tmp_compexpr_right_2 = NULL;
// Tried code
tmp_assign_source_11 = var_i.object;
if ( tmp_assign_source_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 236;
goto try_finally_handler_16;
}
assert( tmp_comparison_1__value_2.object == NULL );
tmp_comparison_1__value_2.object = INCREASE_REFCOUNT( tmp_assign_source_11 );
tmp_compexpr_right_2 = tmp_comparison_1__value_2.object;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_16:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_15;
}
goto finally_end_4;
finally_end_4:;
tmp_assign_source_10 = RICH_COMPARE_LE( tmp_compexpr_left_2, tmp_compexpr_right_2 );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_15;
}
assert( tmp_and_2__value_1.object == NULL );
tmp_and_2__value_1.object = tmp_assign_source_10;
tmp_cond_value_6 = tmp_and_2__value_1.object;
tmp_cond_truth_6 = CHECK_IF_TRUE( tmp_cond_value_6 );
if ( tmp_cond_truth_6 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_15;
}
if (tmp_cond_truth_6 == 1)
{
goto condexpr_true_4;
}
else
{
goto condexpr_false_4;
}
condexpr_true_4:;
tmp_assign_source_9 = NULL;
// Tried code
tmp_result = tmp_and_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_2__value_1.object );
tmp_and_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_3 = tmp_comparison_1__value_2.object;
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 236;
goto try_finally_handler_17;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_17;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_compexpr_right_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_compexpr_right_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_17;
}
tmp_assign_source_9 = RICH_COMPARE_LT( tmp_compexpr_left_3, tmp_compexpr_right_3 );
Py_DECREF( tmp_compexpr_right_3 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_17;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_17:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_15;
}
goto finally_end_5;
finally_end_5:;
goto condexpr_end_4;
condexpr_false_4:;
tmp_assign_source_9 = tmp_and_2__value_1.object;
Py_INCREF( tmp_assign_source_9 );
condexpr_end_4:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_15:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto try_finally_handler_14;
}
goto finally_end_6;
finally_end_6:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_14:;
exception_keeper_type_7 = exception_type;
exception_keeper_value_7 = exception_value;
exception_keeper_tb_7 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_comparison_1__value_2.object );
tmp_comparison_1__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_7 != NULL )
{
exception_type = exception_keeper_type_7;
exception_value = exception_keeper_value_7;
exception_tb = exception_keeper_tb_7;
goto try_finally_handler_13;
}
goto finally_end_7;
finally_end_7:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_13:;
exception_keeper_type_8 = exception_type;
exception_keeper_value_8 = exception_value;
exception_keeper_tb_8 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_and_2__value_1.object );
tmp_and_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_8 != NULL )
{
exception_type = exception_keeper_type_8;
exception_value = exception_keeper_value_8;
exception_tb = exception_keeper_tb_8;
goto try_finally_handler_12;
}
goto finally_end_8;
finally_end_8:;
assert( tmp_and_4__value_1.object == NULL );
tmp_and_4__value_1.object = tmp_assign_source_9;
tmp_cond_value_7 = tmp_and_4__value_1.object;
tmp_cond_truth_7 = CHECK_IF_TRUE( tmp_cond_value_7 );
if ( tmp_cond_truth_7 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 235;
goto try_finally_handler_12;
}
if (tmp_cond_truth_7 == 1)
{
goto condexpr_true_5;
}
else
{
goto condexpr_false_5;
}
condexpr_true_5:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_and_4__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_4__value_1.object );
tmp_and_4__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_cond_value_3 = NULL;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_cond_value_3 = NULL;
// Tried code
tmp_compexpr_left_4 = const_int_0;
tmp_compexpr_right_4 = NULL;
// Tried code
tmp_assign_source_13 = var_j.object;
if ( tmp_assign_source_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 236;
goto try_finally_handler_22;
}
assert( tmp_comparison_2__value_2.object == NULL );
tmp_comparison_2__value_2.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
tmp_compexpr_right_4 = tmp_comparison_2__value_2.object;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_22:;
exception_keeper_type_9 = exception_type;
exception_keeper_value_9 = exception_value;
exception_keeper_tb_9 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_9 != NULL )
{
exception_type = exception_keeper_type_9;
exception_value = exception_keeper_value_9;
exception_tb = exception_keeper_tb_9;
goto try_finally_handler_21;
}
goto finally_end_9;
finally_end_9:;
tmp_assign_source_12 = RICH_COMPARE_LE( tmp_compexpr_left_4, tmp_compexpr_right_4 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_21;
}
assert( tmp_and_3__value_1.object == NULL );
tmp_and_3__value_1.object = tmp_assign_source_12;
tmp_cond_value_8 = tmp_and_3__value_1.object;
tmp_cond_truth_8 = CHECK_IF_TRUE( tmp_cond_value_8 );
if ( tmp_cond_truth_8 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_21;
}
if (tmp_cond_truth_8 == 1)
{
goto condexpr_true_6;
}
else
{
goto condexpr_false_6;
}
condexpr_true_6:;
tmp_cond_value_3 = NULL;
// Tried code
tmp_result = tmp_and_3__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_3__value_1.object );
tmp_and_3__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_5 = tmp_comparison_2__value_2.object;
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 236;
goto try_finally_handler_23;
}
tmp_subscr_target_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_23;
}
tmp_subscr_subscript_2 = const_int_pos_1;
tmp_compexpr_right_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
Py_DECREF( tmp_subscr_target_2 );
if ( tmp_compexpr_right_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_23;
}
tmp_cond_value_3 = RICH_COMPARE_LT( tmp_compexpr_left_5, tmp_compexpr_right_5 );
Py_DECREF( tmp_compexpr_right_5 );
if ( tmp_cond_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 236;
goto try_finally_handler_23;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_23:;
exception_keeper_type_10 = exception_type;
exception_keeper_value_10 = exception_value;
exception_keeper_tb_10 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_10 != NULL )
{
exception_type = exception_keeper_type_10;
exception_value = exception_keeper_value_10;
exception_tb = exception_keeper_tb_10;
goto try_finally_handler_21;
}
goto finally_end_10;
finally_end_10:;
goto condexpr_end_6;
condexpr_false_6:;
tmp_cond_value_3 = tmp_and_3__value_1.object;
Py_INCREF( tmp_cond_value_3 );
condexpr_end_6:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_21:;
exception_keeper_type_11 = exception_type;
exception_keeper_value_11 = exception_value;
exception_keeper_tb_11 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_11 != NULL )
{
exception_type = exception_keeper_type_11;
exception_value = exception_keeper_value_11;
exception_tb = exception_keeper_tb_11;
goto try_finally_handler_20;
}
goto finally_end_11;
finally_end_11:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_20:;
exception_keeper_type_12 = exception_type;
exception_keeper_value_12 = exception_value;
exception_keeper_tb_12 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
Py_XDECREF( tmp_comparison_2__value_2.object );
tmp_comparison_2__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_12 != NULL )
{
exception_type = exception_keeper_type_12;
exception_value = exception_keeper_value_12;
exception_tb = exception_keeper_tb_12;
goto try_finally_handler_19;
}
goto finally_end_12;
finally_end_12:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_19:;
exception_keeper_type_13 = exception_type;
exception_keeper_value_13 = exception_value;
exception_keeper_tb_13 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_and_3__value_1.object );
tmp_and_3__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_13 != NULL )
{
exception_type = exception_keeper_type_13;
exception_value = exception_keeper_value_13;
exception_tb = exception_keeper_tb_13;
goto try_finally_handler_18;
}
goto finally_end_13;
finally_end_13:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_18:;
exception_keeper_type_14 = exception_type;
exception_keeper_value_14 = exception_value;
exception_keeper_tb_14 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_14 != NULL )
{
exception_type = exception_keeper_type_14;
exception_value = exception_keeper_value_14;
exception_tb = exception_keeper_tb_14;
goto try_finally_handler_12;
}
goto finally_end_14;
finally_end_14:;
goto condexpr_end_5;
condexpr_false_5:;
tmp_cond_value_3 = tmp_and_4__value_1.object;
Py_INCREF( tmp_cond_value_3 );
condexpr_end_5:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_12:;
exception_keeper_type_15 = exception_type;
exception_keeper_value_15 = exception_value;
exception_keeper_tb_15 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_15 != NULL )
{
exception_type = exception_keeper_type_15;
exception_value = exception_keeper_value_15;
exception_tb = exception_keeper_tb_15;
goto try_finally_handler_11;
}
goto finally_end_15;
finally_end_15:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_11:;
exception_keeper_type_16 = exception_type;
exception_keeper_value_16 = exception_value;
exception_keeper_tb_16 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_16 != NULL )
{
exception_type = exception_keeper_type_16;
exception_value = exception_keeper_value_16;
exception_tb = exception_keeper_tb_16;
goto try_finally_handler_10;
}
goto finally_end_16;
finally_end_16:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_10:;
exception_keeper_type_17 = exception_type;
exception_keeper_value_17 = exception_value;
exception_keeper_tb_17 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_6 = frame_function->f_lineno;
Py_XDECREF( tmp_and_4__value_1.object );
tmp_and_4__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_6;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_17 != NULL )
{
exception_type = exception_keeper_type_17;
exception_value = exception_keeper_value_17;
exception_tb = exception_keeper_tb_17;
goto try_finally_handler_9;
}
goto finally_end_17;
finally_end_17:;
goto condexpr_end_3;
condexpr_false_3:;
tmp_cond_value_3 = tmp_and_4__value_2.object;
Py_INCREF( tmp_cond_value_3 );
condexpr_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_9:;
exception_keeper_type_18 = exception_type;
exception_keeper_value_18 = exception_value;
exception_keeper_tb_18 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_18 != NULL )
{
exception_type = exception_keeper_type_18;
exception_value = exception_keeper_value_18;
exception_tb = exception_keeper_tb_18;
goto try_finally_handler_8;
}
goto finally_end_18;
finally_end_18:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_8:;
exception_keeper_type_19 = exception_type;
exception_keeper_value_19 = exception_value;
exception_keeper_tb_19 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_19 != NULL )
{
exception_type = exception_keeper_type_19;
exception_value = exception_keeper_value_19;
exception_tb = exception_keeper_tb_19;
goto try_finally_handler_7;
}
goto finally_end_19;
finally_end_19:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_7:;
exception_keeper_type_20 = exception_type;
exception_keeper_value_20 = exception_value;
exception_keeper_tb_20 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_7 = frame_function->f_lineno;
Py_XDECREF( tmp_and_4__value_2.object );
tmp_and_4__value_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_7;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_20 != NULL )
{
exception_type = exception_keeper_type_20;
exception_value = exception_keeper_value_20;
exception_tb = exception_keeper_tb_20;
goto try_finally_handler_6;
}
goto finally_end_20;
finally_end_20:;
goto condexpr_end_2;
condexpr_false_2:;
tmp_cond_value_3 = tmp_and_4__value_3.object;
Py_INCREF( tmp_cond_value_3 );
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_21 = exception_type;
exception_keeper_value_21 = exception_value;
exception_keeper_tb_21 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_21 != NULL )
{
exception_type = exception_keeper_type_21;
exception_value = exception_keeper_value_21;
exception_tb = exception_keeper_tb_21;
goto try_finally_handler_5;
}
goto finally_end_21;
finally_end_21:;
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_3 );
frame_function->f_lineno = 235;
goto try_finally_handler_5;
}
Py_DECREF( tmp_cond_value_3 );
if (tmp_cond_truth_3 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_source_name_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_3 == NULL ))
{
tmp_source_name_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 237;
goto try_finally_handler_5;
}
tmp_called_3 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_asarray );
if ( tmp_called_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 237;
goto try_finally_handler_5;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = par_x.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_called_3 );
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 237;
goto try_finally_handler_5;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
Py_DECREF( tmp_called_3 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 237;
goto try_finally_handler_5;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_3 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 237;
goto try_finally_handler_5;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 237;
tmp_assign_source_14 = CALL_FUNCTION( tmp_called_3, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_called_3 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 237;
goto try_finally_handler_5;
}
assert( var_v.object == NULL );
var_v.object = tmp_assign_source_14;
// Tried code
tmp_cond_value_9 = NULL;
// Tried code
tmp_source_name_5 = var_v.object;
tmp_compexpr_left_6 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_ndim );
if ( tmp_compexpr_left_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 238;
goto try_finally_handler_25;
}
tmp_compexpr_right_6 = const_int_0;
tmp_assign_source_15 = RICH_COMPARE_EQ( tmp_compexpr_left_6, tmp_compexpr_right_6 );
Py_DECREF( tmp_compexpr_left_6 );
if ( tmp_assign_source_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 238;
goto try_finally_handler_25;
}
assert( tmp_and_5__value_1.object == NULL );
tmp_and_5__value_1.object = tmp_assign_source_15;
tmp_cond_value_10 = tmp_and_5__value_1.object;
tmp_cond_truth_10 = CHECK_IF_TRUE( tmp_cond_value_10 );
if ( tmp_cond_truth_10 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 238;
goto try_finally_handler_25;
}
if (tmp_cond_truth_10 == 1)
{
goto condexpr_true_7;
}
else
{
goto condexpr_false_7;
}
condexpr_true_7:;
tmp_cond_value_9 = NULL;
// Tried code
tmp_result = tmp_and_5__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_and_5__value_1.object );
tmp_and_5__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_7 = var_v.object;
tmp_compexpr_right_7 = const_int_0;
tmp_cond_value_9 = RICH_COMPARE_NE( tmp_compexpr_left_7, tmp_compexpr_right_7 );
if ( tmp_cond_value_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 238;
goto try_finally_handler_26;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_26:;
exception_keeper_type_22 = exception_type;
exception_keeper_value_22 = exception_value;
exception_keeper_tb_22 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_22 != NULL )
{
exception_type = exception_keeper_type_22;
exception_value = exception_keeper_value_22;
exception_tb = exception_keeper_tb_22;
goto try_finally_handler_25;
}
goto finally_end_22;
finally_end_22:;
goto condexpr_end_7;
condexpr_false_7:;
tmp_cond_value_9 = tmp_and_5__value_1.object;
Py_INCREF( tmp_cond_value_9 );
condexpr_end_7:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_25:;
exception_keeper_type_23 = exception_type;
exception_keeper_value_23 = exception_value;
exception_keeper_tb_23 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_23 != NULL )
{
exception_type = exception_keeper_type_23;
exception_value = exception_keeper_value_23;
exception_tb = exception_keeper_tb_23;
goto try_finally_handler_24;
}
goto finally_end_23;
finally_end_23:;
tmp_cond_truth_9 = CHECK_IF_TRUE( tmp_cond_value_9 );
if ( tmp_cond_truth_9 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_9 );
frame_function->f_lineno = 238;
goto try_finally_handler_24;
}
Py_DECREF( tmp_cond_value_9 );
if (tmp_cond_truth_9 == 1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_source_name_6 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
tmp_called_4 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain___setitem__ );
if ( tmp_called_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
tmp_call_arg_element_3 = par_self.object;
if ( tmp_call_arg_element_3 == NULL )
{
Py_DECREF( tmp_called_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
tmp_call_arg_element_4 = PyTuple_New( 2 );
tmp_int_arg_1 = var_i.object;
if ( tmp_int_arg_1 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
tmp_tuple_element_2 = PyNumber_Int( tmp_int_arg_1 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
PyTuple_SET_ITEM( tmp_call_arg_element_4, 0, tmp_tuple_element_2 );
tmp_int_arg_2 = var_j.object;
if ( tmp_int_arg_2 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
tmp_tuple_element_2 = PyNumber_Int( tmp_int_arg_2 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
PyTuple_SET_ITEM( tmp_call_arg_element_4, 1, tmp_tuple_element_2 );
tmp_subscr_target_3 = var_v.object;
if ( tmp_subscr_target_3 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 4481 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
tmp_subscr_subscript_3 = const_tuple_empty;
tmp_call_arg_element_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 );
if ( tmp_call_arg_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
frame_function->f_lineno = 239;
tmp_unused = CALL_FUNCTION_WITH_ARGS3( tmp_called_4, tmp_call_arg_element_3, tmp_call_arg_element_4, tmp_call_arg_element_5 );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_arg_element_4 );
Py_DECREF( tmp_call_arg_element_5 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 239;
goto try_finally_handler_24;
}
Py_DECREF( tmp_unused );
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto try_finally_handler_start_3;
branch_no_3:;
try_finally_handler_start_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_24:;
exception_keeper_type_24 = exception_type;
exception_keeper_value_24 = exception_value;
exception_keeper_tb_24 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_8 = frame_function->f_lineno;
Py_XDECREF( tmp_and_5__value_1.object );
tmp_and_5__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_8;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_24 != NULL )
{
exception_type = exception_keeper_type_24;
exception_value = exception_keeper_value_24;
exception_tb = exception_keeper_tb_24;
goto try_finally_handler_5;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto try_finally_handler_start_2;
}
goto finally_end_24;
finally_end_24:;
branch_no_2:;
try_finally_handler_start_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_25 = exception_type;
exception_keeper_value_25 = exception_value;
exception_keeper_tb_25 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_9 = frame_function->f_lineno;
Py_XDECREF( tmp_and_4__value_3.object );
tmp_and_4__value_3.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_9;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_25 != NULL )
{
exception_type = exception_keeper_type_25;
exception_value = exception_keeper_value_25;
exception_tb = exception_keeper_tb_25;
goto try_finally_handler_1;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto try_finally_handler_start_1;
}
goto finally_end_25;
finally_end_25:;
branch_no_1:;
try_finally_handler_start_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_26 = exception_type;
exception_keeper_value_26 = exception_value;
exception_keeper_tb_26 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_10 = frame_function->f_lineno;
Py_XDECREF( tmp_and_1__value_1.object );
tmp_and_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_10;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_26 != NULL )
{
exception_type = exception_keeper_type_26;
exception_value = exception_keeper_value_26;
exception_tb = exception_keeper_tb_26;
goto frame_exception_exit_1;
}
// Return value if any.
if ( tmp_return_value != NULL )
{
goto frame_return_exit_1;
}
goto finally_end_26;
finally_end_26:;
// Tried code
tmp_source_name_7 = par_self.object;
if ( tmp_source_name_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
tmp_called_5 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain__unpack_index );
if ( tmp_called_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
tmp_call_arg_element_6 = par_index.object;
if ( tmp_call_arg_element_6 == NULL )
{
Py_DECREF( tmp_called_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 25672 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
frame_function->f_lineno = 242;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_6 );
Py_DECREF( tmp_called_5 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
tmp_assign_source_16 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
assert( tmp_tuple_unpack_2__source_iter.object == NULL );
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_16;
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_17 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_17 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
assert( tmp_tuple_unpack_2__element_1.object == NULL );
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_17;
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_18 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_18 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 242;
goto try_finally_handler_27;
}
assert( tmp_tuple_unpack_2__element_2.object == NULL );
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_18;
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_27;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_27;
}
tmp_assign_source_19 = tmp_tuple_unpack_2__element_1.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
Py_DECREF( old );
}
tmp_assign_source_20 = tmp_tuple_unpack_2__element_2.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_20 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_20 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_27:;
exception_keeper_type_27 = exception_type;
exception_keeper_value_27 = exception_value;
exception_keeper_tb_27 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_11 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_11;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_27 != NULL )
{
exception_type = exception_keeper_type_27;
exception_value = exception_keeper_value_27;
exception_tb = exception_keeper_tb_27;
goto frame_exception_exit_1;
}
goto finally_end_27;
finally_end_27:;
// Tried code
tmp_source_name_8 = par_self.object;
if ( tmp_source_name_8 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
tmp_called_6 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain__index_to_arrays );
if ( tmp_called_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
tmp_call_arg_element_7 = var_i.object;
if ( tmp_call_arg_element_7 == NULL )
{
Py_DECREF( tmp_called_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
tmp_call_arg_element_8 = var_j.object;
if ( tmp_call_arg_element_8 == NULL )
{
Py_DECREF( tmp_called_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
frame_function->f_lineno = 243;
tmp_iter_arg_3 = CALL_FUNCTION_WITH_ARGS2( tmp_called_6, tmp_call_arg_element_7, tmp_call_arg_element_8 );
Py_DECREF( tmp_called_6 );
if ( tmp_iter_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
tmp_assign_source_21 = MAKE_ITERATOR( tmp_iter_arg_3 );
Py_DECREF( tmp_iter_arg_3 );
if ( tmp_assign_source_21 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
assert( tmp_tuple_unpack_3__source_iter.object == NULL );
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_21;
tmp_unpack_5 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_22 = UNPACK_PARAMETER_NEXT( tmp_unpack_5, 0 );
if ( tmp_assign_source_22 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
assert( tmp_tuple_unpack_3__element_1.object == NULL );
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_22;
tmp_unpack_6 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_23 = UNPACK_PARAMETER_NEXT( tmp_unpack_6, 1 );
if ( tmp_assign_source_23 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 243;
goto try_finally_handler_28;
}
assert( tmp_tuple_unpack_3__element_2.object == NULL );
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_23;
tmp_iterator_name_3 = tmp_tuple_unpack_3__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_3 ); assert( PyIter_Check( tmp_iterator_name_3 ) );
tmp_iterator_attempt_3 = (*Py_TYPE( tmp_iterator_name_3 )->tp_iternext)( tmp_iterator_name_3 );
if (likely( tmp_iterator_attempt_3 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_28;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_3 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_28;
}
tmp_assign_source_24 = tmp_tuple_unpack_3__element_1.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_24 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_24 );
Py_DECREF( old );
}
tmp_assign_source_25 = tmp_tuple_unpack_3__element_2.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_25 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_25 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_28:;
exception_keeper_type_28 = exception_type;
exception_keeper_value_28 = exception_value;
exception_keeper_tb_28 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_12 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_3__source_iter.object );
tmp_tuple_unpack_3__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_1.object );
tmp_tuple_unpack_3__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_2.object );
tmp_tuple_unpack_3__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_12;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_28 != NULL )
{
exception_type = exception_keeper_type_28;
exception_value = exception_keeper_value_28;
exception_tb = exception_keeper_tb_28;
goto frame_exception_exit_1;
}
goto finally_end_28;
finally_end_28:;
tmp_called_7 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix );
if (unlikely( tmp_called_7 == NULL ))
{
tmp_called_7 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isspmatrix );
}
if ( tmp_called_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259965 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 245;
goto frame_exception_exit_1;
}
tmp_call_arg_element_9 = par_x.object;
if ( tmp_call_arg_element_9 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 245;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 245;
tmp_cond_value_11 = CALL_FUNCTION_WITH_ARGS1( tmp_called_7, tmp_call_arg_element_9 );
if ( tmp_cond_value_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 245;
goto frame_exception_exit_1;
}
tmp_cond_truth_11 = CHECK_IF_TRUE( tmp_cond_value_11 );
if ( tmp_cond_truth_11 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_11 );
frame_function->f_lineno = 245;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_11 );
if (tmp_cond_truth_11 == 1)
{
goto branch_yes_4;
}
else
{
goto branch_no_4;
}
branch_yes_4:;
tmp_source_name_9 = par_x.object;
if ( tmp_source_name_9 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 246;
goto frame_exception_exit_1;
}
tmp_called_8 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_toarray );
if ( tmp_called_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 246;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 246;
tmp_assign_source_26 = CALL_FUNCTION_NO_ARGS( tmp_called_8 );
Py_DECREF( tmp_called_8 );
if ( tmp_assign_source_26 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 246;
goto frame_exception_exit_1;
}
if (par_x.object == NULL)
{
par_x.object = tmp_assign_source_26;
}
else
{
PyObject *old = par_x.object;
par_x.object = tmp_assign_source_26;
Py_DECREF( old );
}
branch_no_4:;
tmp_source_name_10 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_10 == NULL ))
{
tmp_source_name_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_10 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 249;
goto frame_exception_exit_1;
}
tmp_called_9 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_asarray );
if ( tmp_called_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 249;
goto frame_exception_exit_1;
}
tmp_call_pos_2 = PyTuple_New( 1 );
tmp_tuple_element_3 = par_x.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_called_9 );
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 249;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_call_pos_2, 0, tmp_tuple_element_3 );
tmp_call_kw_2 = _PyDict_NewPresized( 1 );
tmp_source_name_11 = par_self.object;
if ( tmp_source_name_11 == NULL )
{
Py_DECREF( tmp_called_9 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 249;
goto frame_exception_exit_1;
}
tmp_dict_value_2 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_dtype );
if ( tmp_dict_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_9 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 249;
goto frame_exception_exit_1;
}
tmp_dict_key_2 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_2, tmp_dict_key_2, tmp_dict_value_2 );
Py_DECREF( tmp_dict_value_2 );
frame_function->f_lineno = 249;
tmp_assign_source_27 = CALL_FUNCTION( tmp_called_9, tmp_call_pos_2, tmp_call_kw_2 );
Py_DECREF( tmp_called_9 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
if ( tmp_assign_source_27 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 249;
goto frame_exception_exit_1;
}
if (par_x.object == NULL)
{
par_x.object = tmp_assign_source_27;
}
else
{
PyObject *old = par_x.object;
par_x.object = tmp_assign_source_27;
Py_DECREF( old );
}
// Tried code
tmp_source_name_12 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_12 == NULL ))
{
tmp_source_name_12 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
tmp_called_10 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain_broadcast_arrays );
if ( tmp_called_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
tmp_call_arg_element_10 = par_x.object;
tmp_call_arg_element_11 = var_i.object;
if ( tmp_call_arg_element_11 == NULL )
{
Py_DECREF( tmp_called_10 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
frame_function->f_lineno = 250;
tmp_iter_arg_4 = CALL_FUNCTION_WITH_ARGS2( tmp_called_10, tmp_call_arg_element_10, tmp_call_arg_element_11 );
Py_DECREF( tmp_called_10 );
if ( tmp_iter_arg_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
tmp_assign_source_28 = MAKE_ITERATOR( tmp_iter_arg_4 );
Py_DECREF( tmp_iter_arg_4 );
if ( tmp_assign_source_28 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
assert( tmp_tuple_unpack_4__source_iter.object == NULL );
tmp_tuple_unpack_4__source_iter.object = tmp_assign_source_28;
tmp_unpack_7 = tmp_tuple_unpack_4__source_iter.object;
tmp_assign_source_29 = UNPACK_PARAMETER_NEXT( tmp_unpack_7, 0 );
if ( tmp_assign_source_29 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
assert( tmp_tuple_unpack_4__element_1.object == NULL );
tmp_tuple_unpack_4__element_1.object = tmp_assign_source_29;
tmp_unpack_8 = tmp_tuple_unpack_4__source_iter.object;
tmp_assign_source_30 = UNPACK_PARAMETER_NEXT( tmp_unpack_8, 1 );
if ( tmp_assign_source_30 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 250;
goto try_finally_handler_29;
}
assert( tmp_tuple_unpack_4__element_2.object == NULL );
tmp_tuple_unpack_4__element_2.object = tmp_assign_source_30;
tmp_iterator_name_4 = tmp_tuple_unpack_4__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_4 ); assert( PyIter_Check( tmp_iterator_name_4 ) );
tmp_iterator_attempt_4 = (*Py_TYPE( tmp_iterator_name_4 )->tp_iternext)( tmp_iterator_name_4 );
if (likely( tmp_iterator_attempt_4 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_29;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_4 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_29;
}
tmp_assign_source_31 = tmp_tuple_unpack_4__element_1.object;
assert( par_x.object != NULL );
{
PyObject *old = par_x.object;
par_x.object = INCREASE_REFCOUNT( tmp_assign_source_31 );
Py_DECREF( old );
}
tmp_assign_source_32 = tmp_tuple_unpack_4__element_2.object;
assert( var__.object == NULL );
var__.object = INCREASE_REFCOUNT( tmp_assign_source_32 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_29:;
exception_keeper_type_29 = exception_type;
exception_keeper_value_29 = exception_value;
exception_keeper_tb_29 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_13 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_4__source_iter.object );
tmp_tuple_unpack_4__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_4__element_1.object );
tmp_tuple_unpack_4__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_4__element_2.object );
tmp_tuple_unpack_4__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_13;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_29 != NULL )
{
exception_type = exception_keeper_type_29;
exception_value = exception_keeper_value_29;
exception_tb = exception_keeper_tb_29;
goto frame_exception_exit_1;
}
goto finally_end_29;
finally_end_29:;
tmp_source_name_13 = par_x.object;
if ( tmp_source_name_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 252;
goto frame_exception_exit_1;
}
tmp_compare_left_1 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain_shape );
if ( tmp_compare_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 252;
goto frame_exception_exit_1;
}
tmp_source_name_14 = var_i.object;
if ( tmp_source_name_14 == NULL )
{
Py_DECREF( tmp_compare_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 252;
goto frame_exception_exit_1;
}
tmp_compare_right_1 = LOOKUP_ATTRIBUTE( tmp_source_name_14, const_str_plain_shape );
if ( tmp_compare_right_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_1 );
frame_function->f_lineno = 252;
goto frame_exception_exit_1;
}
tmp_cmp_NotEq_1 = RICH_COMPARE_BOOL_NE( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_NotEq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_1 );
Py_DECREF( tmp_compare_right_1 );
frame_function->f_lineno = 252;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_1 );
Py_DECREF( tmp_compare_right_1 );
if (tmp_cmp_NotEq_1 == 1)
{
goto branch_yes_5;
}
else
{
goto branch_no_5;
}
branch_yes_5:;
tmp_make_exception_arg_1 = const_str_digest_597bf68b5eb90e62afad7674d7c0d147;
frame_function->f_lineno = 253;
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_ValueError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 253;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_1;
frame_function->f_lineno = 253;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_no_5:;
tmp_source_name_15 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_15 == NULL ))
{
tmp_source_name_15 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_15 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 255;
goto frame_exception_exit_1;
}
tmp_called_11 = LOOKUP_ATTRIBUTE( tmp_source_name_15, const_str_plain_size );
if ( tmp_called_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 255;
goto frame_exception_exit_1;
}
tmp_call_arg_element_12 = par_x.object;
if ( tmp_call_arg_element_12 == NULL )
{
Py_DECREF( tmp_called_11 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 255;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 255;
tmp_compare_left_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_11, tmp_call_arg_element_12 );
Py_DECREF( tmp_called_11 );
if ( tmp_compare_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 255;
goto frame_exception_exit_1;
}
tmp_compare_right_2 = const_int_0;
tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_2, tmp_compare_right_2 );
if ( tmp_cmp_Eq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_2 );
frame_function->f_lineno = 255;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_2 );
if (tmp_cmp_Eq_1 == 1)
{
goto branch_yes_6;
}
else
{
goto branch_no_6;
}
branch_yes_6:;
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
branch_no_6:;
tmp_source_name_16 = var_i.object;
if ( tmp_source_name_16 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 258;
goto frame_exception_exit_1;
}
tmp_called_12 = LOOKUP_ATTRIBUTE( tmp_source_name_16, const_str_plain_min );
if ( tmp_called_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 258;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 258;
tmp_assign_source_33 = CALL_FUNCTION_NO_ARGS( tmp_called_12 );
Py_DECREF( tmp_called_12 );
if ( tmp_assign_source_33 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 258;
goto frame_exception_exit_1;
}
assert( var_min_i.object == NULL );
var_min_i.object = tmp_assign_source_33;
// Tried code
tmp_cond_value_12 = NULL;
// Tried code
tmp_compexpr_left_8 = var_min_i.object;
tmp_source_name_17 = par_self.object;
if ( tmp_source_name_17 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 259;
goto try_finally_handler_31;
}
tmp_subscr_target_4 = LOOKUP_ATTRIBUTE( tmp_source_name_17, const_str_plain_shape );
if ( tmp_subscr_target_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_31;
}
tmp_subscr_subscript_4 = const_int_0;
tmp_unary_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_4, tmp_subscr_subscript_4 );
Py_DECREF( tmp_subscr_target_4 );
if ( tmp_unary_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_31;
}
tmp_compexpr_right_8 = UNARY_OPERATION( PyNumber_Negative, tmp_unary_arg_1 );
Py_DECREF( tmp_unary_arg_1 );
if ( tmp_compexpr_right_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_31;
}
tmp_assign_source_34 = RICH_COMPARE_LT( tmp_compexpr_left_8, tmp_compexpr_right_8 );
Py_DECREF( tmp_compexpr_right_8 );
if ( tmp_assign_source_34 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_31;
}
assert( tmp_or_1__value_1.object == NULL );
tmp_or_1__value_1.object = tmp_assign_source_34;
tmp_cond_value_13 = tmp_or_1__value_1.object;
tmp_cond_truth_13 = CHECK_IF_TRUE( tmp_cond_value_13 );
if ( tmp_cond_truth_13 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_31;
}
if (tmp_cond_truth_13 == 1)
{
goto condexpr_true_8;
}
else
{
goto condexpr_false_8;
}
condexpr_true_8:;
tmp_cond_value_12 = tmp_or_1__value_1.object;
Py_INCREF( tmp_cond_value_12 );
goto condexpr_end_8;
condexpr_false_8:;
tmp_cond_value_12 = NULL;
// Tried code
tmp_result = tmp_or_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_source_name_18 = var_i.object;
if ( tmp_source_name_18 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
tmp_called_13 = LOOKUP_ATTRIBUTE( tmp_source_name_18, const_str_plain_max );
if ( tmp_called_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
frame_function->f_lineno = 259;
tmp_compexpr_left_9 = CALL_FUNCTION_NO_ARGS( tmp_called_13 );
Py_DECREF( tmp_called_13 );
if ( tmp_compexpr_left_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
tmp_source_name_19 = par_self.object;
if ( tmp_source_name_19 == NULL )
{
Py_DECREF( tmp_compexpr_left_9 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
tmp_subscr_target_5 = LOOKUP_ATTRIBUTE( tmp_source_name_19, const_str_plain_shape );
if ( tmp_subscr_target_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_9 );
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
tmp_subscr_subscript_5 = const_int_0;
tmp_compexpr_right_9 = LOOKUP_SUBSCRIPT( tmp_subscr_target_5, tmp_subscr_subscript_5 );
Py_DECREF( tmp_subscr_target_5 );
if ( tmp_compexpr_right_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_9 );
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
tmp_cond_value_12 = RICH_COMPARE_GE( tmp_compexpr_left_9, tmp_compexpr_right_9 );
Py_DECREF( tmp_compexpr_left_9 );
Py_DECREF( tmp_compexpr_right_9 );
if ( tmp_cond_value_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 259;
goto try_finally_handler_32;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_32:;
exception_keeper_type_30 = exception_type;
exception_keeper_value_30 = exception_value;
exception_keeper_tb_30 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_30 != NULL )
{
exception_type = exception_keeper_type_30;
exception_value = exception_keeper_value_30;
exception_tb = exception_keeper_tb_30;
goto try_finally_handler_31;
}
goto finally_end_30;
finally_end_30:;
condexpr_end_8:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_31:;
exception_keeper_type_31 = exception_type;
exception_keeper_value_31 = exception_value;
exception_keeper_tb_31 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_31 != NULL )
{
exception_type = exception_keeper_type_31;
exception_value = exception_keeper_value_31;
exception_tb = exception_keeper_tb_31;
goto try_finally_handler_30;
}
goto finally_end_31;
finally_end_31:;
tmp_cond_truth_12 = CHECK_IF_TRUE( tmp_cond_value_12 );
if ( tmp_cond_truth_12 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_12 );
frame_function->f_lineno = 259;
goto try_finally_handler_30;
}
Py_DECREF( tmp_cond_value_12 );
if (tmp_cond_truth_12 == 1)
{
goto branch_yes_7;
}
else
{
goto branch_no_7;
}
branch_yes_7:;
tmp_binop_left_1 = const_str_digest_bd489d90bd42335afe30aea8e84c9dda;
tmp_binop_right_1 = PyTuple_New( 3 );
tmp_source_name_20 = var_i.object;
if ( tmp_source_name_20 == NULL )
{
Py_DECREF( tmp_binop_right_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
tmp_called_14 = LOOKUP_ATTRIBUTE( tmp_source_name_20, const_str_plain_min );
if ( tmp_called_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
frame_function->f_lineno = 261;
tmp_tuple_element_4 = CALL_FUNCTION_NO_ARGS( tmp_called_14 );
Py_DECREF( tmp_called_14 );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
PyTuple_SET_ITEM( tmp_binop_right_1, 0, tmp_tuple_element_4 );
tmp_source_name_21 = par_self.object;
if ( tmp_source_name_21 == NULL )
{
Py_DECREF( tmp_binop_right_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
tmp_subscr_target_6 = LOOKUP_ATTRIBUTE( tmp_source_name_21, const_str_plain_shape );
if ( tmp_subscr_target_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
tmp_subscr_subscript_6 = const_int_0;
tmp_tuple_element_4 = LOOKUP_SUBSCRIPT( tmp_subscr_target_6, tmp_subscr_subscript_6 );
Py_DECREF( tmp_subscr_target_6 );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
PyTuple_SET_ITEM( tmp_binop_right_1, 1, tmp_tuple_element_4 );
tmp_source_name_22 = par_self.object;
if ( tmp_source_name_22 == NULL )
{
Py_DECREF( tmp_binop_right_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
tmp_subscr_target_7 = LOOKUP_ATTRIBUTE( tmp_source_name_22, const_str_plain_shape );
if ( tmp_subscr_target_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
tmp_subscr_subscript_7 = const_int_0;
tmp_binop_left_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_7, tmp_subscr_subscript_7 );
Py_DECREF( tmp_subscr_target_7 );
if ( tmp_binop_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
tmp_binop_right_2 = const_int_pos_1;
tmp_tuple_element_4 = BINARY_OPERATION_SUB( tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_left_2 );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_1 );
frame_function->f_lineno = 261;
goto try_finally_handler_30;
}
PyTuple_SET_ITEM( tmp_binop_right_1, 2, tmp_tuple_element_4 );
tmp_make_exception_arg_2 = BINARY_OPERATION_REMAINDER( tmp_binop_left_1, tmp_binop_right_1 );
Py_DECREF( tmp_binop_right_1 );
if ( tmp_make_exception_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 260;
goto try_finally_handler_30;
}
frame_function->f_lineno = 260;
tmp_raise_type_2 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_2 );
Py_DECREF( tmp_make_exception_arg_2 );
if ( tmp_raise_type_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 260;
goto try_finally_handler_30;
}
exception_type = tmp_raise_type_2;
frame_function->f_lineno = 260;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_30;
branch_no_7:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_30:;
exception_keeper_type_32 = exception_type;
exception_keeper_value_32 = exception_value;
exception_keeper_tb_32 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_14 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_14;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_32 != NULL )
{
exception_type = exception_keeper_type_32;
exception_value = exception_keeper_value_32;
exception_tb = exception_keeper_tb_32;
goto frame_exception_exit_1;
}
goto finally_end_32;
finally_end_32:;
tmp_compare_left_3 = var_min_i.object;
if ( tmp_compare_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267206 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 262;
goto frame_exception_exit_1;
}
tmp_compare_right_3 = const_int_0;
tmp_cmp_Lt_1 = RICH_COMPARE_BOOL_LT( tmp_compare_left_3, tmp_compare_right_3 );
if ( tmp_cmp_Lt_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 262;
goto frame_exception_exit_1;
}
if (tmp_cmp_Lt_1 == 1)
{
goto branch_yes_8;
}
else
{
goto branch_no_8;
}
branch_yes_8:;
tmp_source_name_23 = var_i.object;
if ( tmp_source_name_23 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 263;
goto frame_exception_exit_1;
}
tmp_called_15 = LOOKUP_ATTRIBUTE( tmp_source_name_23, const_str_plain_copy );
if ( tmp_called_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 263;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 263;
tmp_assign_source_35 = CALL_FUNCTION_NO_ARGS( tmp_called_15 );
Py_DECREF( tmp_called_15 );
if ( tmp_assign_source_35 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 263;
goto frame_exception_exit_1;
}
if (var_i.object == NULL)
{
var_i.object = tmp_assign_source_35;
}
else
{
PyObject *old = var_i.object;
var_i.object = tmp_assign_source_35;
Py_DECREF( old );
}
tmp_assign_source_36 = var_i.object;
assert( tmp_inplace_assign_1__inplace_target.object == NULL );
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_36 );
// Tried code
tmp_compexpr_left_10 = var_i.object;
tmp_compexpr_right_10 = const_int_0;
tmp_assign_source_37 = RICH_COMPARE_LT( tmp_compexpr_left_10, tmp_compexpr_right_10 );
if ( tmp_assign_source_37 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
assert( tmp_inplace_assign_1__inplace_subscript.object == NULL );
tmp_inplace_assign_1__inplace_subscript.object = tmp_assign_source_37;
tmp_subscr_target_8 = tmp_inplace_assign_1__inplace_target.object;
tmp_subscr_subscript_8 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_binop_left_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_8, tmp_subscr_subscript_8 );
if ( tmp_binop_left_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
tmp_source_name_24 = par_self.object;
if ( tmp_source_name_24 == NULL )
{
Py_DECREF( tmp_binop_left_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
tmp_subscr_target_9 = LOOKUP_ATTRIBUTE( tmp_source_name_24, const_str_plain_shape );
if ( tmp_subscr_target_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_3 );
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
tmp_subscr_subscript_9 = const_int_0;
tmp_binop_right_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_9, tmp_subscr_subscript_9 );
Py_DECREF( tmp_subscr_target_9 );
if ( tmp_binop_right_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_3 );
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
tmp_ass_subvalue_1 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_3, tmp_binop_right_3 );
Py_DECREF( tmp_binop_left_3 );
Py_DECREF( tmp_binop_right_3 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
tmp_ass_subscribed_1 = tmp_inplace_assign_1__inplace_target.object;
tmp_ass_subscript_1 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 264;
goto try_finally_handler_33;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_33:;
exception_keeper_type_33 = exception_type;
exception_keeper_value_33 = exception_value;
exception_keeper_tb_33 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_15 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_1__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_1__inplace_target.object );
tmp_inplace_assign_1__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_1__inplace_subscript.object );
tmp_inplace_assign_1__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_15;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_33 != NULL )
{
exception_type = exception_keeper_type_33;
exception_value = exception_keeper_value_33;
exception_tb = exception_keeper_tb_33;
goto frame_exception_exit_1;
}
goto finally_end_33;
finally_end_33:;
branch_no_8:;
tmp_source_name_25 = var_j.object;
if ( tmp_source_name_25 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 266;
goto frame_exception_exit_1;
}
tmp_called_16 = LOOKUP_ATTRIBUTE( tmp_source_name_25, const_str_plain_min );
if ( tmp_called_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 266;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 266;
tmp_assign_source_38 = CALL_FUNCTION_NO_ARGS( tmp_called_16 );
Py_DECREF( tmp_called_16 );
if ( tmp_assign_source_38 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 266;
goto frame_exception_exit_1;
}
assert( var_min_j.object == NULL );
var_min_j.object = tmp_assign_source_38;
// Tried code
tmp_cond_value_14 = NULL;
// Tried code
tmp_compexpr_left_11 = var_min_j.object;
tmp_source_name_26 = par_self.object;
if ( tmp_source_name_26 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 267;
goto try_finally_handler_35;
}
tmp_subscr_target_10 = LOOKUP_ATTRIBUTE( tmp_source_name_26, const_str_plain_shape );
if ( tmp_subscr_target_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_35;
}
tmp_subscr_subscript_10 = const_int_0;
tmp_unary_arg_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_10, tmp_subscr_subscript_10 );
Py_DECREF( tmp_subscr_target_10 );
if ( tmp_unary_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_35;
}
tmp_compexpr_right_11 = UNARY_OPERATION( PyNumber_Negative, tmp_unary_arg_2 );
Py_DECREF( tmp_unary_arg_2 );
if ( tmp_compexpr_right_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_35;
}
tmp_assign_source_39 = RICH_COMPARE_LT( tmp_compexpr_left_11, tmp_compexpr_right_11 );
Py_DECREF( tmp_compexpr_right_11 );
if ( tmp_assign_source_39 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_35;
}
assert( tmp_or_2__value_1.object == NULL );
tmp_or_2__value_1.object = tmp_assign_source_39;
tmp_cond_value_15 = tmp_or_2__value_1.object;
tmp_cond_truth_15 = CHECK_IF_TRUE( tmp_cond_value_15 );
if ( tmp_cond_truth_15 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_35;
}
if (tmp_cond_truth_15 == 1)
{
goto condexpr_true_9;
}
else
{
goto condexpr_false_9;
}
condexpr_true_9:;
tmp_cond_value_14 = tmp_or_2__value_1.object;
Py_INCREF( tmp_cond_value_14 );
goto condexpr_end_9;
condexpr_false_9:;
tmp_cond_value_14 = NULL;
// Tried code
tmp_result = tmp_or_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_source_name_27 = var_j.object;
if ( tmp_source_name_27 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
tmp_called_17 = LOOKUP_ATTRIBUTE( tmp_source_name_27, const_str_plain_max );
if ( tmp_called_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
frame_function->f_lineno = 267;
tmp_compexpr_left_12 = CALL_FUNCTION_NO_ARGS( tmp_called_17 );
Py_DECREF( tmp_called_17 );
if ( tmp_compexpr_left_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
tmp_source_name_28 = par_self.object;
if ( tmp_source_name_28 == NULL )
{
Py_DECREF( tmp_compexpr_left_12 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
tmp_subscr_target_11 = LOOKUP_ATTRIBUTE( tmp_source_name_28, const_str_plain_shape );
if ( tmp_subscr_target_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_12 );
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
tmp_subscr_subscript_11 = const_int_pos_1;
tmp_compexpr_right_12 = LOOKUP_SUBSCRIPT( tmp_subscr_target_11, tmp_subscr_subscript_11 );
Py_DECREF( tmp_subscr_target_11 );
if ( tmp_compexpr_right_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compexpr_left_12 );
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
tmp_cond_value_14 = RICH_COMPARE_GE( tmp_compexpr_left_12, tmp_compexpr_right_12 );
Py_DECREF( tmp_compexpr_left_12 );
Py_DECREF( tmp_compexpr_right_12 );
if ( tmp_cond_value_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 267;
goto try_finally_handler_36;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_36:;
exception_keeper_type_34 = exception_type;
exception_keeper_value_34 = exception_value;
exception_keeper_tb_34 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_34 != NULL )
{
exception_type = exception_keeper_type_34;
exception_value = exception_keeper_value_34;
exception_tb = exception_keeper_tb_34;
goto try_finally_handler_35;
}
goto finally_end_34;
finally_end_34:;
condexpr_end_9:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_35:;
exception_keeper_type_35 = exception_type;
exception_keeper_value_35 = exception_value;
exception_keeper_tb_35 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_35 != NULL )
{
exception_type = exception_keeper_type_35;
exception_value = exception_keeper_value_35;
exception_tb = exception_keeper_tb_35;
goto try_finally_handler_34;
}
goto finally_end_35;
finally_end_35:;
tmp_cond_truth_14 = CHECK_IF_TRUE( tmp_cond_value_14 );
if ( tmp_cond_truth_14 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_14 );
frame_function->f_lineno = 267;
goto try_finally_handler_34;
}
Py_DECREF( tmp_cond_value_14 );
if (tmp_cond_truth_14 == 1)
{
goto branch_yes_9;
}
else
{
goto branch_no_9;
}
branch_yes_9:;
tmp_binop_left_4 = const_str_digest_bd489d90bd42335afe30aea8e84c9dda;
tmp_binop_right_4 = PyTuple_New( 3 );
tmp_source_name_29 = var_j.object;
if ( tmp_source_name_29 == NULL )
{
Py_DECREF( tmp_binop_right_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
tmp_called_18 = LOOKUP_ATTRIBUTE( tmp_source_name_29, const_str_plain_min );
if ( tmp_called_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
frame_function->f_lineno = 269;
tmp_tuple_element_5 = CALL_FUNCTION_NO_ARGS( tmp_called_18 );
Py_DECREF( tmp_called_18 );
if ( tmp_tuple_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
PyTuple_SET_ITEM( tmp_binop_right_4, 0, tmp_tuple_element_5 );
tmp_source_name_30 = par_self.object;
if ( tmp_source_name_30 == NULL )
{
Py_DECREF( tmp_binop_right_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
tmp_subscr_target_12 = LOOKUP_ATTRIBUTE( tmp_source_name_30, const_str_plain_shape );
if ( tmp_subscr_target_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
tmp_subscr_subscript_12 = const_int_pos_1;
tmp_tuple_element_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_12, tmp_subscr_subscript_12 );
Py_DECREF( tmp_subscr_target_12 );
if ( tmp_tuple_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
PyTuple_SET_ITEM( tmp_binop_right_4, 1, tmp_tuple_element_5 );
tmp_source_name_31 = par_self.object;
if ( tmp_source_name_31 == NULL )
{
Py_DECREF( tmp_binop_right_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
tmp_subscr_target_13 = LOOKUP_ATTRIBUTE( tmp_source_name_31, const_str_plain_shape );
if ( tmp_subscr_target_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
tmp_subscr_subscript_13 = const_int_pos_1;
tmp_binop_left_5 = LOOKUP_SUBSCRIPT( tmp_subscr_target_13, tmp_subscr_subscript_13 );
Py_DECREF( tmp_subscr_target_13 );
if ( tmp_binop_left_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
tmp_binop_right_5 = const_int_pos_1;
tmp_tuple_element_5 = BINARY_OPERATION_SUB( tmp_binop_left_5, tmp_binop_right_5 );
Py_DECREF( tmp_binop_left_5 );
if ( tmp_tuple_element_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_right_4 );
frame_function->f_lineno = 269;
goto try_finally_handler_34;
}
PyTuple_SET_ITEM( tmp_binop_right_4, 2, tmp_tuple_element_5 );
tmp_make_exception_arg_3 = BINARY_OPERATION_REMAINDER( tmp_binop_left_4, tmp_binop_right_4 );
Py_DECREF( tmp_binop_right_4 );
if ( tmp_make_exception_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 268;
goto try_finally_handler_34;
}
frame_function->f_lineno = 268;
tmp_raise_type_3 = CALL_FUNCTION_WITH_ARGS1( PyExc_IndexError, tmp_make_exception_arg_3 );
Py_DECREF( tmp_make_exception_arg_3 );
if ( tmp_raise_type_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 268;
goto try_finally_handler_34;
}
exception_type = tmp_raise_type_3;
frame_function->f_lineno = 268;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto try_finally_handler_34;
branch_no_9:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_34:;
exception_keeper_type_36 = exception_type;
exception_keeper_value_36 = exception_value;
exception_keeper_tb_36 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_16 = frame_function->f_lineno;
Py_XDECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_16;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_36 != NULL )
{
exception_type = exception_keeper_type_36;
exception_value = exception_keeper_value_36;
exception_tb = exception_keeper_tb_36;
goto frame_exception_exit_1;
}
goto finally_end_36;
finally_end_36:;
tmp_compare_left_4 = var_min_j.object;
if ( tmp_compare_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267257 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 270;
goto frame_exception_exit_1;
}
tmp_compare_right_4 = const_int_0;
tmp_cmp_Lt_2 = RICH_COMPARE_BOOL_LT( tmp_compare_left_4, tmp_compare_right_4 );
if ( tmp_cmp_Lt_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 270;
goto frame_exception_exit_1;
}
if (tmp_cmp_Lt_2 == 1)
{
goto branch_yes_10;
}
else
{
goto branch_no_10;
}
branch_yes_10:;
tmp_source_name_32 = var_j.object;
if ( tmp_source_name_32 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 271;
goto frame_exception_exit_1;
}
tmp_called_19 = LOOKUP_ATTRIBUTE( tmp_source_name_32, const_str_plain_copy );
if ( tmp_called_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 271;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 271;
tmp_assign_source_40 = CALL_FUNCTION_NO_ARGS( tmp_called_19 );
Py_DECREF( tmp_called_19 );
if ( tmp_assign_source_40 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 271;
goto frame_exception_exit_1;
}
if (var_j.object == NULL)
{
var_j.object = tmp_assign_source_40;
}
else
{
PyObject *old = var_j.object;
var_j.object = tmp_assign_source_40;
Py_DECREF( old );
}
tmp_assign_source_41 = var_j.object;
assert( tmp_inplace_assign_2__inplace_target.object == NULL );
tmp_inplace_assign_2__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_41 );
// Tried code
tmp_compexpr_left_13 = var_j.object;
tmp_compexpr_right_13 = const_int_0;
tmp_assign_source_42 = RICH_COMPARE_LT( tmp_compexpr_left_13, tmp_compexpr_right_13 );
if ( tmp_assign_source_42 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
assert( tmp_inplace_assign_2__inplace_subscript.object == NULL );
tmp_inplace_assign_2__inplace_subscript.object = tmp_assign_source_42;
tmp_subscr_target_14 = tmp_inplace_assign_2__inplace_target.object;
tmp_subscr_subscript_14 = tmp_inplace_assign_2__inplace_subscript.object;
tmp_binop_left_6 = LOOKUP_SUBSCRIPT( tmp_subscr_target_14, tmp_subscr_subscript_14 );
if ( tmp_binop_left_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
tmp_source_name_33 = par_self.object;
if ( tmp_source_name_33 == NULL )
{
Py_DECREF( tmp_binop_left_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
tmp_subscr_target_15 = LOOKUP_ATTRIBUTE( tmp_source_name_33, const_str_plain_shape );
if ( tmp_subscr_target_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_6 );
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
tmp_subscr_subscript_15 = const_int_pos_1;
tmp_binop_right_6 = LOOKUP_SUBSCRIPT( tmp_subscr_target_15, tmp_subscr_subscript_15 );
Py_DECREF( tmp_subscr_target_15 );
if ( tmp_binop_right_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_6 );
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
tmp_ass_subvalue_2 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_6, tmp_binop_right_6 );
Py_DECREF( tmp_binop_left_6 );
Py_DECREF( tmp_binop_right_6 );
if ( tmp_ass_subvalue_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
tmp_ass_subscribed_2 = tmp_inplace_assign_2__inplace_target.object;
tmp_ass_subscript_2 = tmp_inplace_assign_2__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2 );
Py_DECREF( tmp_ass_subvalue_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 272;
goto try_finally_handler_37;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_37:;
exception_keeper_type_37 = exception_type;
exception_keeper_value_37 = exception_value;
exception_keeper_tb_37 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_17 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_2__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_2__inplace_target.object );
tmp_inplace_assign_2__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_2__inplace_subscript.object );
tmp_inplace_assign_2__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_17;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_37 != NULL )
{
exception_type = exception_keeper_type_37;
exception_value = exception_keeper_value_37;
exception_tb = exception_keeper_tb_37;
goto frame_exception_exit_1;
}
goto finally_end_37;
finally_end_37:;
branch_no_10:;
tmp_source_name_34 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_34 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_called_20 = LOOKUP_ATTRIBUTE( tmp_source_name_34, const_str_plain_update );
if ( tmp_called_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_call_arg_element_13 = par_self.object;
if ( tmp_call_arg_element_13 == NULL )
{
Py_DECREF( tmp_called_20 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_called_21 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_izip );
if (unlikely( tmp_called_21 == NULL ))
{
tmp_called_21 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_izip );
}
if ( tmp_called_21 == NULL )
{
Py_DECREF( tmp_called_20 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 262038 ], 33, 0 );
exception_tb = NULL;
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_called_22 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_izip );
if (unlikely( tmp_called_22 == NULL ))
{
tmp_called_22 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_izip );
}
if ( tmp_called_22 == NULL )
{
Py_DECREF( tmp_called_20 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 262038 ], 33, 0 );
exception_tb = NULL;
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_source_name_35 = var_i.object;
if ( tmp_source_name_35 == NULL )
{
Py_DECREF( tmp_called_20 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_call_arg_element_16 = LOOKUP_ATTRIBUTE( tmp_source_name_35, const_str_plain_flat );
if ( tmp_call_arg_element_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_20 );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_source_name_36 = var_j.object;
if ( tmp_source_name_36 == NULL )
{
Py_DECREF( tmp_called_20 );
Py_DECREF( tmp_call_arg_element_16 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_call_arg_element_17 = LOOKUP_ATTRIBUTE( tmp_source_name_36, const_str_plain_flat );
if ( tmp_call_arg_element_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_20 );
Py_DECREF( tmp_call_arg_element_16 );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 274;
tmp_call_arg_element_15 = CALL_FUNCTION_WITH_ARGS2( tmp_called_22, tmp_call_arg_element_16, tmp_call_arg_element_17 );
Py_DECREF( tmp_call_arg_element_16 );
Py_DECREF( tmp_call_arg_element_17 );
if ( tmp_call_arg_element_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_20 );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_source_name_37 = par_x.object;
if ( tmp_source_name_37 == NULL )
{
Py_DECREF( tmp_called_20 );
Py_DECREF( tmp_call_arg_element_15 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
tmp_call_arg_element_18 = LOOKUP_ATTRIBUTE( tmp_source_name_37, const_str_plain_flat );
if ( tmp_call_arg_element_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_20 );
Py_DECREF( tmp_call_arg_element_15 );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 274;
tmp_call_arg_element_14 = CALL_FUNCTION_WITH_ARGS2( tmp_called_21, tmp_call_arg_element_15, tmp_call_arg_element_18 );
Py_DECREF( tmp_call_arg_element_15 );
Py_DECREF( tmp_call_arg_element_18 );
if ( tmp_call_arg_element_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_20 );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 274;
tmp_unused = CALL_FUNCTION_WITH_ARGS2( tmp_called_20, tmp_call_arg_element_13, tmp_call_arg_element_14 );
Py_DECREF( tmp_called_20 );
Py_DECREF( tmp_call_arg_element_14 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 274;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_compare_left_5 = const_int_0;
tmp_compare_right_5 = par_x.object;
if ( tmp_compare_right_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 276;
goto frame_exception_exit_1;
}
tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_5, tmp_compare_left_5 );
if ( tmp_cmp_In_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 276;
goto frame_exception_exit_1;
}
if (tmp_cmp_In_1 == 1)
{
goto branch_yes_11;
}
else
{
goto branch_no_11;
}
branch_yes_11:;
tmp_compexpr_left_14 = par_x.object;
if ( tmp_compexpr_left_14 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 277;
goto frame_exception_exit_1;
}
tmp_compexpr_right_14 = const_int_0;
tmp_assign_source_43 = RICH_COMPARE_EQ( tmp_compexpr_left_14, tmp_compexpr_right_14 );
if ( tmp_assign_source_43 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 277;
goto frame_exception_exit_1;
}
assert( var_zeroes.object == NULL );
var_zeroes.object = tmp_assign_source_43;
tmp_called_23 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_izip );
if (unlikely( tmp_called_23 == NULL ))
{
tmp_called_23 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_izip );
}
if ( tmp_called_23 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 262038 ], 33, 0 );
exception_tb = NULL;
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_subscr_target_16 = var_i.object;
if ( tmp_subscr_target_16 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_16 = var_zeroes.object;
tmp_source_name_38 = LOOKUP_SUBSCRIPT( tmp_subscr_target_16, tmp_subscr_subscript_16 );
if ( tmp_source_name_38 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_call_arg_element_19 = LOOKUP_ATTRIBUTE( tmp_source_name_38, const_str_plain_flat );
Py_DECREF( tmp_source_name_38 );
if ( tmp_call_arg_element_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_subscr_target_17 = var_j.object;
if ( tmp_subscr_target_17 == NULL )
{
Py_DECREF( tmp_call_arg_element_19 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_17 = var_zeroes.object;
tmp_source_name_39 = LOOKUP_SUBSCRIPT( tmp_subscr_target_17, tmp_subscr_subscript_17 );
if ( tmp_source_name_39 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_arg_element_19 );
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_call_arg_element_20 = LOOKUP_ATTRIBUTE( tmp_source_name_39, const_str_plain_flat );
Py_DECREF( tmp_source_name_39 );
if ( tmp_call_arg_element_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_arg_element_19 );
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 278;
tmp_iter_arg_5 = CALL_FUNCTION_WITH_ARGS2( tmp_called_23, tmp_call_arg_element_19, tmp_call_arg_element_20 );
Py_DECREF( tmp_call_arg_element_19 );
Py_DECREF( tmp_call_arg_element_20 );
if ( tmp_iter_arg_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
tmp_assign_source_44 = MAKE_ITERATOR( tmp_iter_arg_5 );
Py_DECREF( tmp_iter_arg_5 );
if ( tmp_assign_source_44 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 278;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_44;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_45 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_45 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 278;
goto try_finally_handler_38;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_45;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_45;
Py_DECREF( old );
}
tmp_assign_source_46 = tmp_for_loop_1__iter_value.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_46 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_46 );
Py_DECREF( old );
}
tmp_source_name_40 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_source_name_40 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 279;
goto try_finally_handler_38;
}
tmp_called_24 = LOOKUP_ATTRIBUTE( tmp_source_name_40, const_str_plain___getitem__ );
if ( tmp_called_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 279;
goto try_finally_handler_38;
}
tmp_call_arg_element_21 = par_self.object;
if ( tmp_call_arg_element_21 == NULL )
{
Py_DECREF( tmp_called_24 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 279;
goto try_finally_handler_38;
}
tmp_call_arg_element_22 = var_key.object;
frame_function->f_lineno = 279;
tmp_compare_left_6 = CALL_FUNCTION_WITH_ARGS2( tmp_called_24, tmp_call_arg_element_21, tmp_call_arg_element_22 );
Py_DECREF( tmp_called_24 );
if ( tmp_compare_left_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 279;
goto try_finally_handler_38;
}
tmp_compare_right_6 = const_int_0;
tmp_cmp_Eq_2 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_6, tmp_compare_right_6 );
if ( tmp_cmp_Eq_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_6 );
frame_function->f_lineno = 279;
goto try_finally_handler_38;
}
Py_DECREF( tmp_compare_left_6 );
if (tmp_cmp_Eq_2 == 1)
{
goto branch_yes_12;
}
else
{
goto branch_no_12;
}
branch_yes_12:;
tmp_delsubscr_target_1 = par_self.object;
if ( tmp_delsubscr_target_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 281;
goto try_finally_handler_38;
}
tmp_delsubscr_subscript_1 = var_key.object;
tmp_result = DEL_SUBSCRIPT( tmp_delsubscr_target_1, tmp_delsubscr_subscript_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 281;
goto try_finally_handler_38;
}
branch_no_12:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 278;
goto try_finally_handler_38;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_38:;
exception_keeper_type_38 = exception_type;
exception_keeper_value_38 = exception_value;
exception_keeper_tb_38 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_18 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_18;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_38 != NULL )
{
exception_type = exception_keeper_type_38;
exception_value = exception_keeper_value_38;
exception_tb = exception_keeper_tb_38;
goto frame_exception_exit_1;
}
goto finally_end_38;
finally_end_38:;
branch_no_11:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((var_v.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_v,
var_v.object
);
}
if ((var__.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain__,
var__.object
);
}
if ((var_min_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_min_i,
var_min_i.object
);
}
if ((var_min_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_min_j,
var_min_j.object
);
}
if ((var_zeroes.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_zeroes,
var_zeroes.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_index.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_index,
par_index.object
);
}
if ((par_x.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_x,
par_x.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto function_return_exit;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_index = NULL;
PyObject *_python_par_x = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__setitem__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_index == key )
{
assert( _python_par_index == NULL );
_python_par_index = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_x == key )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_index, key ) == 1 )
{
assert( _python_par_index == NULL );
_python_par_index = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_x, key ) == 1 )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__setitem__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 3 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 3 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_index != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_index = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_index == NULL )
{
if ( 1 + self->m_defaults_given >= 3 )
{
_python_par_index = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 2 < args_given ))
{
if (unlikely( _python_par_x != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 2 );
goto error_exit;
}
_python_par_x = INCREASE_REFCOUNT( args[ 2 ] );
}
else if ( _python_par_x == NULL )
{
if ( 2 + self->m_defaults_given >= 3 )
{
_python_par_x = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 2 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_index == NULL || _python_par_x == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_index, _python_par_x };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_index, _python_par_x );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_index );
Py_XDECREF( _python_par_x );
return NULL;
}
static PyObject *dparse_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 3 )
{
return impl_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ), INCREASE_REFCOUNT( args[ 2 ] ) );
}
else
{
PyObject *result = fparse_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_res_dtype;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectLocalVariable var_aij;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_csc;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_for_loop_2__for_iterator;
PyObjectTempVariable tmp_for_loop_2__iter_value;
PyObjectTempVariable tmp_for_loop_3__for_iterator;
PyObjectTempVariable tmp_for_loop_3__iter_value;
PyObjectTempVariable tmp_inplace_assign_1__inplace_target;
PyObjectTempVariable tmp_inplace_assign_1__inplace_subscript;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscribed_2;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subscript_2;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_ass_subvalue_2;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_left_3;
PyObject *tmp_binop_left_4;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_binop_right_3;
PyObject *tmp_binop_right_4;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_call_arg_element_6;
PyObject *tmp_call_arg_element_7;
PyObject *tmp_call_arg_element_8;
PyObject *tmp_call_arg_element_9;
PyObject *tmp_call_arg_element_10;
PyObject *tmp_call_arg_element_11;
PyObject *tmp_call_arg_element_12;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_kw_2;
PyObject *tmp_call_pos_1;
PyObject *tmp_call_pos_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_called_9;
PyObject *tmp_called_10;
PyObject *tmp_called_11;
PyObject *tmp_called_12;
PyObject *tmp_called_13;
PyObject *tmp_called_14;
int tmp_cmp_NotEq_1;
int tmp_cmp_NotEq_2;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_frame_locals;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_inst_1;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_make_exception_arg_2;
PyObject *tmp_next_source_1;
PyObject *tmp_next_source_2;
PyObject *tmp_next_source_3;
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_type_2;
int tmp_res;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_source_name_12;
PyObject *tmp_source_name_13;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_90d1a15673486a21f212bed95abe5556, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isscalarlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalarlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259640 ], 41, 0 );
exception_tb = NULL;
frame_function->f_lineno = 285;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_other.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 285;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 285;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 285;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 285;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast_scalar );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_upcast_scalar );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267718 ], 42, 0 );
exception_tb = NULL;
frame_function->f_lineno = 286;
goto frame_exception_exit_1;
}
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 286;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_dtype );
if ( tmp_call_arg_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 286;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = par_other.object;
if ( tmp_call_arg_element_3 == NULL )
{
Py_DECREF( tmp_call_arg_element_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 286;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 286;
tmp_assign_source_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_2, tmp_call_arg_element_2, tmp_call_arg_element_3 );
Py_DECREF( tmp_call_arg_element_2 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 286;
goto frame_exception_exit_1;
}
assert( var_res_dtype.object == NULL );
var_res_dtype.object = tmp_assign_source_1;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 287;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 287;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 287;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_dict_value_1 = var_res_dtype.object;
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
frame_function->f_lineno = 287;
tmp_assign_source_2 = CALL_FUNCTION( tmp_called_3, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 287;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_2;
// Tried code
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 289;
goto try_finally_handler_1;
}
tmp_iter_arg_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_shape );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 289;
goto try_finally_handler_1;
}
tmp_assign_source_3 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 289;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_3;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 289;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_4;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_5 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_5 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 289;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_5;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_6 = tmp_tuple_unpack_1__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
tmp_assign_source_7 = tmp_tuple_unpack_1__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_7 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_called_4 == NULL ))
{
tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_called_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 290;
goto frame_exception_exit_1;
}
tmp_call_arg_element_4 = var_M.object;
if ( tmp_call_arg_element_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 290;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 290;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_4 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 290;
goto frame_exception_exit_1;
}
tmp_assign_source_8 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 290;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_8;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_9 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_9 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 290;
goto try_finally_handler_2;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_9;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_9;
Py_DECREF( old );
}
tmp_assign_source_10 = tmp_for_loop_1__iter_value.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_10 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_10 );
Py_DECREF( old );
}
tmp_called_5 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_called_5 == NULL ))
{
tmp_called_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_called_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 291;
goto try_finally_handler_2;
}
tmp_call_arg_element_5 = var_N.object;
if ( tmp_call_arg_element_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 71377 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 291;
goto try_finally_handler_2;
}
frame_function->f_lineno = 291;
tmp_iter_arg_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_5 );
if ( tmp_iter_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 291;
goto try_finally_handler_2;
}
tmp_assign_source_11 = MAKE_ITERATOR( tmp_iter_arg_3 );
Py_DECREF( tmp_iter_arg_3 );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 291;
goto try_finally_handler_2;
}
if (tmp_for_loop_2__for_iterator.object == NULL)
{
tmp_for_loop_2__for_iterator.object = tmp_assign_source_11;
}
else
{
PyObject *old = tmp_for_loop_2__for_iterator.object;
tmp_for_loop_2__for_iterator.object = tmp_assign_source_11;
Py_DECREF( old );
}
// Tried code
loop_start_2:;
tmp_next_source_2 = tmp_for_loop_2__for_iterator.object;
tmp_assign_source_12 = ITERATOR_NEXT( tmp_next_source_2 );
if (tmp_assign_source_12 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_2;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 291;
goto try_finally_handler_3;
}
}
if (tmp_for_loop_2__iter_value.object == NULL)
{
tmp_for_loop_2__iter_value.object = tmp_assign_source_12;
}
else
{
PyObject *old = tmp_for_loop_2__iter_value.object;
tmp_for_loop_2__iter_value.object = tmp_assign_source_12;
Py_DECREF( old );
}
tmp_assign_source_13 = tmp_for_loop_2__iter_value.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
Py_DECREF( old );
}
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 292;
goto try_finally_handler_3;
}
tmp_called_6 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_get );
if ( tmp_called_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 292;
goto try_finally_handler_3;
}
tmp_call_arg_element_6 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_i.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_called_6 );
Py_DECREF( tmp_call_arg_element_6 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 292;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_arg_element_6, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_j.object;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_arg_element_6, 1, tmp_tuple_element_2 );
tmp_call_arg_element_7 = const_int_0;
frame_function->f_lineno = 292;
tmp_binop_left_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_6, tmp_call_arg_element_6, tmp_call_arg_element_7 );
Py_DECREF( tmp_called_6 );
Py_DECREF( tmp_call_arg_element_6 );
if ( tmp_binop_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 292;
goto try_finally_handler_3;
}
tmp_binop_right_1 = par_other.object;
if ( tmp_binop_right_1 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 292;
goto try_finally_handler_3;
}
tmp_assign_source_14 = BINARY_OPERATION_ADD( tmp_binop_left_1, tmp_binop_right_1 );
Py_DECREF( tmp_binop_left_1 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 292;
goto try_finally_handler_3;
}
if (var_aij.object == NULL)
{
var_aij.object = tmp_assign_source_14;
}
else
{
PyObject *old = var_aij.object;
var_aij.object = tmp_assign_source_14;
Py_DECREF( old );
}
tmp_compare_left_1 = var_aij.object;
tmp_compare_right_1 = const_int_0;
tmp_cmp_NotEq_1 = RICH_COMPARE_BOOL_NE( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_NotEq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 293;
goto try_finally_handler_3;
}
if (tmp_cmp_NotEq_1 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_ass_subvalue_1 = var_aij.object;
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 294;
goto try_finally_handler_3;
}
tmp_ass_subscript_1 = PyTuple_New( 2 );
tmp_tuple_element_3 = var_i.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_ass_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 294;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = var_j.object;
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 1, tmp_tuple_element_3 );
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 294;
goto try_finally_handler_3;
}
branch_no_2:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 291;
goto try_finally_handler_3;
}
goto loop_start_2;
loop_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_2__iter_value.object );
tmp_for_loop_2__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_2__for_iterator.object );
tmp_for_loop_2__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_2;
}
goto finally_end_2;
finally_end_2:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 290;
goto try_finally_handler_2;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto frame_exception_exit_1;
}
goto finally_end_3;
finally_end_3:;
goto branch_end_1;
branch_no_1:;
tmp_isinstance_inst_1 = par_other.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 296;
goto frame_exception_exit_1;
}
tmp_isinstance_cls_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_isinstance_cls_1 == NULL ))
{
tmp_isinstance_cls_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_isinstance_cls_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 296;
goto frame_exception_exit_1;
}
tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 296;
goto frame_exception_exit_1;
}
if (tmp_res == 1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_source_name_5 = par_other.object;
if ( tmp_source_name_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 297;
goto frame_exception_exit_1;
}
tmp_compare_left_2 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_shape );
if ( tmp_compare_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 297;
goto frame_exception_exit_1;
}
tmp_source_name_6 = par_self.object;
if ( tmp_source_name_6 == NULL )
{
Py_DECREF( tmp_compare_left_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 297;
goto frame_exception_exit_1;
}
tmp_compare_right_2 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_shape );
if ( tmp_compare_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_2 );
frame_function->f_lineno = 297;
goto frame_exception_exit_1;
}
tmp_cmp_NotEq_2 = RICH_COMPARE_BOOL_NE( tmp_compare_left_2, tmp_compare_right_2 );
if ( tmp_cmp_NotEq_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_2 );
Py_DECREF( tmp_compare_right_2 );
frame_function->f_lineno = 297;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_2 );
Py_DECREF( tmp_compare_right_2 );
if (tmp_cmp_NotEq_2 == 1)
{
goto branch_yes_4;
}
else
{
goto branch_no_4;
}
branch_yes_4:;
tmp_make_exception_arg_1 = const_str_digest_5653dafe33dd2b9baccd63f85cb0b9ab;
frame_function->f_lineno = 298;
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_ValueError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 298;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_1;
frame_function->f_lineno = 298;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_no_4:;
tmp_called_7 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast );
if (unlikely( tmp_called_7 == NULL ))
{
tmp_called_7 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_upcast );
}
if ( tmp_called_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260764 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 301;
goto frame_exception_exit_1;
}
tmp_source_name_7 = par_self.object;
if ( tmp_source_name_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 301;
goto frame_exception_exit_1;
}
tmp_call_arg_element_8 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_dtype );
if ( tmp_call_arg_element_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 301;
goto frame_exception_exit_1;
}
tmp_source_name_8 = par_other.object;
if ( tmp_source_name_8 == NULL )
{
Py_DECREF( tmp_call_arg_element_8 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 301;
goto frame_exception_exit_1;
}
tmp_call_arg_element_9 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_dtype );
if ( tmp_call_arg_element_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_arg_element_8 );
frame_function->f_lineno = 301;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 301;
tmp_assign_source_15 = CALL_FUNCTION_WITH_ARGS2( tmp_called_7, tmp_call_arg_element_8, tmp_call_arg_element_9 );
Py_DECREF( tmp_call_arg_element_8 );
Py_DECREF( tmp_call_arg_element_9 );
if ( tmp_assign_source_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 301;
goto frame_exception_exit_1;
}
assert( var_res_dtype.object == NULL );
var_res_dtype.object = tmp_assign_source_15;
tmp_called_8 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_8 == NULL ))
{
tmp_called_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_8 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 302;
goto frame_exception_exit_1;
}
tmp_call_pos_2 = PyTuple_New( 1 );
tmp_source_name_9 = par_self.object;
if ( tmp_source_name_9 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 302;
goto frame_exception_exit_1;
}
tmp_tuple_element_4 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_shape );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_2 );
frame_function->f_lineno = 302;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_2, 0, tmp_tuple_element_4 );
tmp_call_kw_2 = _PyDict_NewPresized( 1 );
tmp_dict_value_2 = var_res_dtype.object;
tmp_dict_key_2 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_2, tmp_dict_key_2, tmp_dict_value_2 );
frame_function->f_lineno = 302;
tmp_assign_source_16 = CALL_FUNCTION( tmp_called_8, tmp_call_pos_2, tmp_call_kw_2 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 302;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_16;
tmp_source_name_10 = var_new.object;
tmp_called_9 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_update );
if ( tmp_called_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 303;
goto frame_exception_exit_1;
}
tmp_call_arg_element_10 = par_self.object;
if ( tmp_call_arg_element_10 == NULL )
{
Py_DECREF( tmp_called_9 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 303;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 303;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_9, tmp_call_arg_element_10 );
Py_DECREF( tmp_called_9 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 303;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_source_name_11 = par_other.object;
if ( tmp_source_name_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 304;
goto frame_exception_exit_1;
}
tmp_called_10 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_keys );
if ( tmp_called_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 304;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 304;
tmp_iter_arg_4 = CALL_FUNCTION_NO_ARGS( tmp_called_10 );
Py_DECREF( tmp_called_10 );
if ( tmp_iter_arg_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 304;
goto frame_exception_exit_1;
}
tmp_assign_source_17 = MAKE_ITERATOR( tmp_iter_arg_4 );
Py_DECREF( tmp_iter_arg_4 );
if ( tmp_assign_source_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 304;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_3__for_iterator.object == NULL );
tmp_for_loop_3__for_iterator.object = tmp_assign_source_17;
// Tried code
loop_start_3:;
tmp_next_source_3 = tmp_for_loop_3__for_iterator.object;
tmp_assign_source_18 = ITERATOR_NEXT( tmp_next_source_3 );
if (tmp_assign_source_18 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_3;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 304;
goto try_finally_handler_4;
}
}
if (tmp_for_loop_3__iter_value.object == NULL)
{
tmp_for_loop_3__iter_value.object = tmp_assign_source_18;
}
else
{
PyObject *old = tmp_for_loop_3__iter_value.object;
tmp_for_loop_3__iter_value.object = tmp_assign_source_18;
Py_DECREF( old );
}
tmp_assign_source_19 = tmp_for_loop_3__iter_value.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
Py_DECREF( old );
}
tmp_assign_source_20 = var_new.object;
if ( tmp_assign_source_20 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 305;
goto try_finally_handler_4;
}
if (tmp_inplace_assign_1__inplace_target.object == NULL)
{
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_20 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_target.object;
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_20 );
Py_DECREF( old );
}
// Tried code
tmp_assign_source_21 = var_key.object;
if (tmp_inplace_assign_1__inplace_subscript.object == NULL)
{
tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_21 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_subscript.object;
tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_21 );
Py_DECREF( old );
}
tmp_subscr_target_1 = tmp_inplace_assign_1__inplace_target.object;
tmp_subscr_subscript_1 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_binop_left_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
if ( tmp_binop_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 305;
goto try_finally_handler_5;
}
tmp_subscr_target_2 = par_other.object;
if ( tmp_subscr_target_2 == NULL )
{
Py_DECREF( tmp_binop_left_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 305;
goto try_finally_handler_5;
}
tmp_subscr_subscript_2 = var_key.object;
tmp_binop_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_binop_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_2 );
frame_function->f_lineno = 305;
goto try_finally_handler_5;
}
tmp_ass_subvalue_2 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_left_2 );
Py_DECREF( tmp_binop_right_2 );
if ( tmp_ass_subvalue_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 305;
goto try_finally_handler_5;
}
tmp_ass_subscribed_2 = tmp_inplace_assign_1__inplace_target.object;
tmp_ass_subscript_2 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2 );
Py_DECREF( tmp_ass_subvalue_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 305;
goto try_finally_handler_5;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_1__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_1__inplace_target.object );
tmp_inplace_assign_1__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_1__inplace_subscript.object );
tmp_inplace_assign_1__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_4;
}
goto finally_end_4;
finally_end_4:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 304;
goto try_finally_handler_4;
}
goto loop_start_3;
loop_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_3__iter_value.object );
tmp_for_loop_3__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_3__for_iterator.object );
tmp_for_loop_3__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto frame_exception_exit_1;
}
goto finally_end_5;
finally_end_5:;
goto branch_end_3;
branch_no_3:;
tmp_called_11 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix );
if (unlikely( tmp_called_11 == NULL ))
{
tmp_called_11 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isspmatrix );
}
if ( tmp_called_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259965 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 306;
goto frame_exception_exit_1;
}
tmp_call_arg_element_11 = par_other.object;
if ( tmp_call_arg_element_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 306;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 306;
tmp_cond_value_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_11, tmp_call_arg_element_11 );
if ( tmp_cond_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 306;
goto frame_exception_exit_1;
}
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_2 );
frame_function->f_lineno = 306;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_2 );
if (tmp_cond_truth_2 == 1)
{
goto branch_yes_5;
}
else
{
goto branch_no_5;
}
branch_yes_5:;
tmp_source_name_12 = par_self.object;
if ( tmp_source_name_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 307;
goto frame_exception_exit_1;
}
tmp_called_12 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain_tocsc );
if ( tmp_called_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 307;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 307;
tmp_assign_source_22 = CALL_FUNCTION_NO_ARGS( tmp_called_12 );
Py_DECREF( tmp_called_12 );
if ( tmp_assign_source_22 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 307;
goto frame_exception_exit_1;
}
assert( var_csc.object == NULL );
var_csc.object = tmp_assign_source_22;
tmp_binop_left_3 = var_csc.object;
tmp_binop_right_3 = par_other.object;
if ( tmp_binop_right_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 308;
goto frame_exception_exit_1;
}
tmp_assign_source_23 = BINARY_OPERATION_ADD( tmp_binop_left_3, tmp_binop_right_3 );
if ( tmp_assign_source_23 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 308;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_23;
goto branch_end_5;
branch_no_5:;
tmp_called_13 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isdense );
if (unlikely( tmp_called_13 == NULL ))
{
tmp_called_13 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdense );
}
if ( tmp_called_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259929 ], 36, 0 );
exception_tb = NULL;
frame_function->f_lineno = 309;
goto frame_exception_exit_1;
}
tmp_call_arg_element_12 = par_other.object;
if ( tmp_call_arg_element_12 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 309;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 309;
tmp_cond_value_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_13, tmp_call_arg_element_12 );
if ( tmp_cond_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 309;
goto frame_exception_exit_1;
}
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_3 );
frame_function->f_lineno = 309;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_3 );
if (tmp_cond_truth_3 == 1)
{
goto branch_yes_6;
}
else
{
goto branch_no_6;
}
branch_yes_6:;
tmp_source_name_13 = par_self.object;
if ( tmp_source_name_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 310;
goto frame_exception_exit_1;
}
tmp_called_14 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain_todense );
if ( tmp_called_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 310;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 310;
tmp_binop_left_4 = CALL_FUNCTION_NO_ARGS( tmp_called_14 );
Py_DECREF( tmp_called_14 );
if ( tmp_binop_left_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 310;
goto frame_exception_exit_1;
}
tmp_binop_right_4 = par_other.object;
if ( tmp_binop_right_4 == NULL )
{
Py_DECREF( tmp_binop_left_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 310;
goto frame_exception_exit_1;
}
tmp_assign_source_24 = BINARY_OPERATION_ADD( tmp_binop_left_4, tmp_binop_right_4 );
Py_DECREF( tmp_binop_left_4 );
if ( tmp_assign_source_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 310;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_24;
goto branch_end_6;
branch_no_6:;
tmp_make_exception_arg_2 = const_str_digest_cab6f81d1ca2e5c5943e05787fe07ae7;
frame_function->f_lineno = 312;
tmp_raise_type_2 = CALL_FUNCTION_WITH_ARGS1( PyExc_TypeError, tmp_make_exception_arg_2 );
if ( tmp_raise_type_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 312;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_2;
frame_function->f_lineno = 312;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_end_6:;
branch_end_5:;
branch_end_3:;
branch_end_1:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 313;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_res_dtype.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_res_dtype,
var_res_dtype.object
);
}
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((var_aij.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_aij,
var_aij.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_csc.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_csc,
var_csc.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__add__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__add__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectLocalVariable var_aij;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_csc;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_for_loop_2__for_iterator;
PyObjectTempVariable tmp_for_loop_2__iter_value;
PyObjectTempVariable tmp_for_loop_3__for_iterator;
PyObjectTempVariable tmp_for_loop_3__iter_value;
PyObjectTempVariable tmp_inplace_assign_1__inplace_target;
PyObjectTempVariable tmp_inplace_assign_1__inplace_subscript;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscribed_2;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subscript_2;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_ass_subvalue_2;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_left_3;
PyObject *tmp_binop_left_4;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_binop_right_3;
PyObject *tmp_binop_right_4;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_arg_element_5;
PyObject *tmp_call_arg_element_6;
PyObject *tmp_call_arg_element_7;
PyObject *tmp_call_arg_element_8;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_kw_2;
PyObject *tmp_call_pos_1;
PyObject *tmp_call_pos_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_called_9;
PyObject *tmp_called_10;
PyObject *tmp_called_11;
int tmp_cmp_NotEq_1;
int tmp_cmp_NotEq_2;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_frame_locals;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_inst_1;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_make_exception_arg_2;
PyObject *tmp_next_source_1;
PyObject *tmp_next_source_2;
PyObject *tmp_next_source_3;
PyObject *tmp_raise_type_1;
PyObject *tmp_raise_type_2;
int tmp_res;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_18e2900c3b453c389fbddcddd807779d, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isscalarlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalarlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259640 ], 41, 0 );
exception_tb = NULL;
frame_function->f_lineno = 317;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_other.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 317;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 317;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 317;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 317;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 318;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 318;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 318;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 318;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 318;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 318;
tmp_assign_source_1 = CALL_FUNCTION( tmp_called_2, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 318;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_1;
// Tried code
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 320;
goto try_finally_handler_1;
}
tmp_iter_arg_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_shape );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 320;
goto try_finally_handler_1;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 320;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_2;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 320;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_3;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 320;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_4;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_5 = tmp_tuple_unpack_1__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
tmp_assign_source_6 = tmp_tuple_unpack_1__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 321;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = var_M.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 321;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 321;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_3, tmp_call_arg_element_2 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 321;
goto frame_exception_exit_1;
}
tmp_assign_source_7 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 321;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_7;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_8 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_8 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 321;
goto try_finally_handler_2;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_8;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_8;
Py_DECREF( old );
}
tmp_assign_source_9 = tmp_for_loop_1__iter_value.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
Py_DECREF( old );
}
tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange );
if (unlikely( tmp_called_4 == NULL ))
{
tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_xrange );
}
if ( tmp_called_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 241323 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 322;
goto try_finally_handler_2;
}
tmp_call_arg_element_3 = var_N.object;
if ( tmp_call_arg_element_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 71377 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 322;
goto try_finally_handler_2;
}
frame_function->f_lineno = 322;
tmp_iter_arg_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_3 );
if ( tmp_iter_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 322;
goto try_finally_handler_2;
}
tmp_assign_source_10 = MAKE_ITERATOR( tmp_iter_arg_3 );
Py_DECREF( tmp_iter_arg_3 );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 322;
goto try_finally_handler_2;
}
if (tmp_for_loop_2__for_iterator.object == NULL)
{
tmp_for_loop_2__for_iterator.object = tmp_assign_source_10;
}
else
{
PyObject *old = tmp_for_loop_2__for_iterator.object;
tmp_for_loop_2__for_iterator.object = tmp_assign_source_10;
Py_DECREF( old );
}
// Tried code
loop_start_2:;
tmp_next_source_2 = tmp_for_loop_2__for_iterator.object;
tmp_assign_source_11 = ITERATOR_NEXT( tmp_next_source_2 );
if (tmp_assign_source_11 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_2;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 322;
goto try_finally_handler_3;
}
}
if (tmp_for_loop_2__iter_value.object == NULL)
{
tmp_for_loop_2__iter_value.object = tmp_assign_source_11;
}
else
{
PyObject *old = tmp_for_loop_2__iter_value.object;
tmp_for_loop_2__iter_value.object = tmp_assign_source_11;
Py_DECREF( old );
}
tmp_assign_source_12 = tmp_for_loop_2__iter_value.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
Py_DECREF( old );
}
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 323;
goto try_finally_handler_3;
}
tmp_called_5 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_get );
if ( tmp_called_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 323;
goto try_finally_handler_3;
}
tmp_call_arg_element_4 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_i.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_called_5 );
Py_DECREF( tmp_call_arg_element_4 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 323;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_arg_element_4, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_j.object;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_arg_element_4, 1, tmp_tuple_element_2 );
tmp_call_arg_element_5 = const_int_0;
frame_function->f_lineno = 323;
tmp_binop_left_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_5, tmp_call_arg_element_4, tmp_call_arg_element_5 );
Py_DECREF( tmp_called_5 );
Py_DECREF( tmp_call_arg_element_4 );
if ( tmp_binop_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 323;
goto try_finally_handler_3;
}
tmp_binop_right_1 = par_other.object;
if ( tmp_binop_right_1 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 323;
goto try_finally_handler_3;
}
tmp_assign_source_13 = BINARY_OPERATION_ADD( tmp_binop_left_1, tmp_binop_right_1 );
Py_DECREF( tmp_binop_left_1 );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 323;
goto try_finally_handler_3;
}
if (var_aij.object == NULL)
{
var_aij.object = tmp_assign_source_13;
}
else
{
PyObject *old = var_aij.object;
var_aij.object = tmp_assign_source_13;
Py_DECREF( old );
}
tmp_compare_left_1 = var_aij.object;
tmp_compare_right_1 = const_int_0;
tmp_cmp_NotEq_1 = RICH_COMPARE_BOOL_NE( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_NotEq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 324;
goto try_finally_handler_3;
}
if (tmp_cmp_NotEq_1 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_ass_subvalue_1 = var_aij.object;
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 325;
goto try_finally_handler_3;
}
tmp_ass_subscript_1 = PyTuple_New( 2 );
tmp_tuple_element_3 = var_i.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_ass_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 325;
goto try_finally_handler_3;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = var_j.object;
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 1, tmp_tuple_element_3 );
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 325;
goto try_finally_handler_3;
}
branch_no_2:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 322;
goto try_finally_handler_3;
}
goto loop_start_2;
loop_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_2__iter_value.object );
tmp_for_loop_2__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_2__for_iterator.object );
tmp_for_loop_2__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_2;
}
goto finally_end_2;
finally_end_2:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 321;
goto try_finally_handler_2;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto frame_exception_exit_1;
}
goto finally_end_3;
finally_end_3:;
goto branch_end_1;
branch_no_1:;
tmp_isinstance_inst_1 = par_other.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 326;
goto frame_exception_exit_1;
}
tmp_isinstance_cls_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_isinstance_cls_1 == NULL ))
{
tmp_isinstance_cls_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_isinstance_cls_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 326;
goto frame_exception_exit_1;
}
tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 326;
goto frame_exception_exit_1;
}
if (tmp_res == 1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_source_name_5 = par_other.object;
if ( tmp_source_name_5 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 327;
goto frame_exception_exit_1;
}
tmp_compare_left_2 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_shape );
if ( tmp_compare_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 327;
goto frame_exception_exit_1;
}
tmp_source_name_6 = par_self.object;
if ( tmp_source_name_6 == NULL )
{
Py_DECREF( tmp_compare_left_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 327;
goto frame_exception_exit_1;
}
tmp_compare_right_2 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_shape );
if ( tmp_compare_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_2 );
frame_function->f_lineno = 327;
goto frame_exception_exit_1;
}
tmp_cmp_NotEq_2 = RICH_COMPARE_BOOL_NE( tmp_compare_left_2, tmp_compare_right_2 );
if ( tmp_cmp_NotEq_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_2 );
Py_DECREF( tmp_compare_right_2 );
frame_function->f_lineno = 327;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_2 );
Py_DECREF( tmp_compare_right_2 );
if (tmp_cmp_NotEq_2 == 1)
{
goto branch_yes_4;
}
else
{
goto branch_no_4;
}
branch_yes_4:;
tmp_make_exception_arg_1 = const_str_digest_5653dafe33dd2b9baccd63f85cb0b9ab;
frame_function->f_lineno = 328;
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_ValueError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 328;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_1;
frame_function->f_lineno = 328;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_no_4:;
tmp_called_6 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_6 == NULL ))
{
tmp_called_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_6 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 329;
goto frame_exception_exit_1;
}
tmp_call_pos_2 = PyTuple_New( 1 );
tmp_source_name_7 = par_self.object;
if ( tmp_source_name_7 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 329;
goto frame_exception_exit_1;
}
tmp_tuple_element_4 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_shape );
if ( tmp_tuple_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_2 );
frame_function->f_lineno = 329;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_2, 0, tmp_tuple_element_4 );
tmp_call_kw_2 = _PyDict_NewPresized( 1 );
tmp_source_name_8 = par_self.object;
if ( tmp_source_name_8 == NULL )
{
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 329;
goto frame_exception_exit_1;
}
tmp_dict_value_2 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_dtype );
if ( tmp_dict_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 329;
goto frame_exception_exit_1;
}
tmp_dict_key_2 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_2, tmp_dict_key_2, tmp_dict_value_2 );
Py_DECREF( tmp_dict_value_2 );
frame_function->f_lineno = 329;
tmp_assign_source_14 = CALL_FUNCTION( tmp_called_6, tmp_call_pos_2, tmp_call_kw_2 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_2 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 329;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_14;
tmp_source_name_9 = var_new.object;
tmp_called_7 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_update );
if ( tmp_called_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 330;
goto frame_exception_exit_1;
}
tmp_call_arg_element_6 = par_self.object;
if ( tmp_call_arg_element_6 == NULL )
{
Py_DECREF( tmp_called_7 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 330;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 330;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_7, tmp_call_arg_element_6 );
Py_DECREF( tmp_called_7 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 330;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
tmp_iter_arg_4 = par_other.object;
if ( tmp_iter_arg_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 331;
goto frame_exception_exit_1;
}
tmp_assign_source_15 = MAKE_ITERATOR( tmp_iter_arg_4 );
if ( tmp_assign_source_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 331;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_3__for_iterator.object == NULL );
tmp_for_loop_3__for_iterator.object = tmp_assign_source_15;
// Tried code
loop_start_3:;
tmp_next_source_3 = tmp_for_loop_3__for_iterator.object;
tmp_assign_source_16 = ITERATOR_NEXT( tmp_next_source_3 );
if (tmp_assign_source_16 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_3;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 331;
goto try_finally_handler_4;
}
}
if (tmp_for_loop_3__iter_value.object == NULL)
{
tmp_for_loop_3__iter_value.object = tmp_assign_source_16;
}
else
{
PyObject *old = tmp_for_loop_3__iter_value.object;
tmp_for_loop_3__iter_value.object = tmp_assign_source_16;
Py_DECREF( old );
}
tmp_assign_source_17 = tmp_for_loop_3__iter_value.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
Py_DECREF( old );
}
tmp_assign_source_18 = var_new.object;
if ( tmp_assign_source_18 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 332;
goto try_finally_handler_4;
}
if (tmp_inplace_assign_1__inplace_target.object == NULL)
{
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_18 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_target.object;
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_18 );
Py_DECREF( old );
}
// Tried code
tmp_assign_source_19 = var_key.object;
if (tmp_inplace_assign_1__inplace_subscript.object == NULL)
{
tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_subscript.object;
tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
Py_DECREF( old );
}
tmp_subscr_target_1 = tmp_inplace_assign_1__inplace_target.object;
tmp_subscr_subscript_1 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_binop_left_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
if ( tmp_binop_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 332;
goto try_finally_handler_5;
}
tmp_subscr_target_2 = par_other.object;
if ( tmp_subscr_target_2 == NULL )
{
Py_DECREF( tmp_binop_left_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 332;
goto try_finally_handler_5;
}
tmp_subscr_subscript_2 = var_key.object;
tmp_binop_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_binop_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_2 );
frame_function->f_lineno = 332;
goto try_finally_handler_5;
}
tmp_ass_subvalue_2 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_left_2 );
Py_DECREF( tmp_binop_right_2 );
if ( tmp_ass_subvalue_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 332;
goto try_finally_handler_5;
}
tmp_ass_subscribed_2 = tmp_inplace_assign_1__inplace_target.object;
tmp_ass_subscript_2 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_2, tmp_ass_subscript_2, tmp_ass_subvalue_2 );
Py_DECREF( tmp_ass_subvalue_2 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 332;
goto try_finally_handler_5;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_1__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_1__inplace_target.object );
tmp_inplace_assign_1__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_1__inplace_subscript.object );
tmp_inplace_assign_1__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_4;
}
goto finally_end_4;
finally_end_4:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 331;
goto try_finally_handler_4;
}
goto loop_start_3;
loop_end_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_3__iter_value.object );
tmp_for_loop_3__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_3__for_iterator.object );
tmp_for_loop_3__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto frame_exception_exit_1;
}
goto finally_end_5;
finally_end_5:;
goto branch_end_3;
branch_no_3:;
tmp_called_8 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix );
if (unlikely( tmp_called_8 == NULL ))
{
tmp_called_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isspmatrix );
}
if ( tmp_called_8 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259965 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 333;
goto frame_exception_exit_1;
}
tmp_call_arg_element_7 = par_other.object;
if ( tmp_call_arg_element_7 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 333;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 333;
tmp_cond_value_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_8, tmp_call_arg_element_7 );
if ( tmp_cond_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 333;
goto frame_exception_exit_1;
}
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_2 );
frame_function->f_lineno = 333;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_2 );
if (tmp_cond_truth_2 == 1)
{
goto branch_yes_5;
}
else
{
goto branch_no_5;
}
branch_yes_5:;
tmp_source_name_10 = par_self.object;
if ( tmp_source_name_10 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 334;
goto frame_exception_exit_1;
}
tmp_called_9 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_tocsc );
if ( tmp_called_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 334;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 334;
tmp_assign_source_20 = CALL_FUNCTION_NO_ARGS( tmp_called_9 );
Py_DECREF( tmp_called_9 );
if ( tmp_assign_source_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 334;
goto frame_exception_exit_1;
}
assert( var_csc.object == NULL );
var_csc.object = tmp_assign_source_20;
tmp_binop_left_3 = var_csc.object;
tmp_binop_right_3 = par_other.object;
if ( tmp_binop_right_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 335;
goto frame_exception_exit_1;
}
tmp_assign_source_21 = BINARY_OPERATION_ADD( tmp_binop_left_3, tmp_binop_right_3 );
if ( tmp_assign_source_21 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 335;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_21;
goto branch_end_5;
branch_no_5:;
tmp_called_10 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isdense );
if (unlikely( tmp_called_10 == NULL ))
{
tmp_called_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isdense );
}
if ( tmp_called_10 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259929 ], 36, 0 );
exception_tb = NULL;
frame_function->f_lineno = 336;
goto frame_exception_exit_1;
}
tmp_call_arg_element_8 = par_other.object;
if ( tmp_call_arg_element_8 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 336;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 336;
tmp_cond_value_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_10, tmp_call_arg_element_8 );
if ( tmp_cond_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 336;
goto frame_exception_exit_1;
}
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_3 );
frame_function->f_lineno = 336;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_3 );
if (tmp_cond_truth_3 == 1)
{
goto branch_yes_6;
}
else
{
goto branch_no_6;
}
branch_yes_6:;
tmp_binop_left_4 = par_other.object;
if ( tmp_binop_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 337;
goto frame_exception_exit_1;
}
tmp_source_name_11 = par_self.object;
if ( tmp_source_name_11 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 337;
goto frame_exception_exit_1;
}
tmp_called_11 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_todense );
if ( tmp_called_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 337;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 337;
tmp_binop_right_4 = CALL_FUNCTION_NO_ARGS( tmp_called_11 );
Py_DECREF( tmp_called_11 );
if ( tmp_binop_right_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 337;
goto frame_exception_exit_1;
}
tmp_assign_source_22 = BINARY_OPERATION_ADD( tmp_binop_left_4, tmp_binop_right_4 );
Py_DECREF( tmp_binop_right_4 );
if ( tmp_assign_source_22 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 337;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_22;
goto branch_end_6;
branch_no_6:;
tmp_make_exception_arg_2 = const_str_digest_cab6f81d1ca2e5c5943e05787fe07ae7;
frame_function->f_lineno = 339;
tmp_raise_type_2 = CALL_FUNCTION_WITH_ARGS1( PyExc_TypeError, tmp_make_exception_arg_2 );
if ( tmp_raise_type_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 339;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_2;
frame_function->f_lineno = 339;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_end_6:;
branch_end_5:;
branch_end_3:;
branch_end_1:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 340;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((var_aij.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_aij,
var_aij.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_csc.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_csc,
var_csc.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__radd__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__radd__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_key;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_target_1;
int tmp_tried_lineno_1;
PyObject *tmp_tuple_element_1;
PyObject *tmp_unary_arg_1;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_f8dda98ccca5acb4971564e026cab97e, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 343;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 343;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 343;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 343;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 343;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 343;
tmp_assign_source_1 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 343;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_1;
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 344;
goto frame_exception_exit_1;
}
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_keys );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 344;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 344;
tmp_iter_arg_1 = CALL_FUNCTION_NO_ARGS( tmp_called_2 );
Py_DECREF( tmp_called_2 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 344;
goto frame_exception_exit_1;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 344;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_2;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_3 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_3 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 344;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
Py_DECREF( old );
}
tmp_assign_source_4 = tmp_for_loop_1__iter_value.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
Py_DECREF( old );
}
tmp_subscr_target_1 = par_self.object;
if ( tmp_subscr_target_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 345;
goto try_finally_handler_1;
}
tmp_subscr_subscript_1 = var_key.object;
tmp_unary_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
if ( tmp_unary_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 345;
goto try_finally_handler_1;
}
tmp_ass_subvalue_1 = UNARY_OPERATION( PyNumber_Negative, tmp_unary_arg_1 );
Py_DECREF( tmp_unary_arg_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 345;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 345;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = var_key.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 345;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 344;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 346;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__neg__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__neg__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_res_dtype;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_val;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_right_1;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
PyObject *tmp_tuple_element_1;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_5c436145cb8a13a9ea437958c88bdaf5, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast_scalar );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_upcast_scalar );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267718 ], 42, 0 );
exception_tb = NULL;
frame_function->f_lineno = 349;
goto frame_exception_exit_1;
}
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 349;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_dtype );
if ( tmp_call_arg_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 349;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = par_other.object;
if ( tmp_call_arg_element_2 == NULL )
{
Py_DECREF( tmp_call_arg_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 349;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 349;
tmp_assign_source_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_1, tmp_call_arg_element_1, tmp_call_arg_element_2 );
Py_DECREF( tmp_call_arg_element_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 349;
goto frame_exception_exit_1;
}
assert( var_res_dtype.object == NULL );
var_res_dtype.object = tmp_assign_source_1;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 351;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 351;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 351;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_dict_value_1 = var_res_dtype.object;
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
frame_function->f_lineno = 351;
tmp_assign_source_2 = CALL_FUNCTION( tmp_called_2, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 351;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_2;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 352;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = par_self.object;
if ( tmp_call_arg_element_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 352;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 352;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_3, tmp_call_arg_element_3 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 352;
goto frame_exception_exit_1;
}
tmp_assign_source_3 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 352;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_3;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_4 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_4 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 352;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_4;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_4;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_2 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_5 = MAKE_ITERATOR( tmp_iter_arg_2 );
if ( tmp_assign_source_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 352;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__source_iter.object == NULL)
{
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_5;
}
else
{
PyObject *old = tmp_tuple_unpack_1__source_iter.object;
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_5;
Py_DECREF( old );
}
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_6 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_6 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 352;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_1.object == NULL)
{
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_6;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_1.object;
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_6;
Py_DECREF( old );
}
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_7 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_7 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 352;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_2.object == NULL)
{
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_7;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_2.object;
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_7;
Py_DECREF( old );
}
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
tmp_assign_source_8 = tmp_tuple_unpack_1__element_1.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_8 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_8 );
Py_DECREF( old );
}
tmp_assign_source_9 = tmp_tuple_unpack_1__element_2.object;
if (var_val.object == NULL)
{
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
}
else
{
PyObject *old = var_val.object;
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_1;
}
goto finally_end_1;
finally_end_1:;
tmp_binop_left_1 = var_val.object;
if ( tmp_binop_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 28580 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 353;
goto try_finally_handler_1;
}
tmp_binop_right_1 = par_other.object;
if ( tmp_binop_right_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 353;
goto try_finally_handler_1;
}
tmp_ass_subvalue_1 = BINARY_OPERATION_MUL( tmp_binop_left_1, tmp_binop_right_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 353;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 353;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = var_key.object;
if ( tmp_ass_subscript_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 353;
goto try_finally_handler_1;
}
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 353;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 352;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto frame_exception_exit_1;
}
goto finally_end_2;
finally_end_2:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 354;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_res_dtype.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_res_dtype,
var_res_dtype.object
);
}
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_val.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_val,
var_val.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_mul_scalar() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_mul_scalar() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_result;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectLocalVariable var_v;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObjectTempVariable tmp_inplace_assign_1__inplace_target;
PyObjectTempVariable tmp_inplace_assign_1__inplace_subscript;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_subscript_3;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_subscr_target_3;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
PyObject *tmp_tuple_element_1;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_f28dbc413200be909312c72a33d70d02, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_1 == NULL ))
{
tmp_source_name_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_zeros );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_tuple_element_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_upcast );
}
if ( tmp_called_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260764 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_dtype );
if ( tmp_call_arg_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_source_name_4 = par_other.object;
if ( tmp_source_name_4 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
Py_DECREF( tmp_call_arg_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_dtype );
if ( tmp_call_arg_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
Py_DECREF( tmp_call_arg_element_1 );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 358;
tmp_dict_value_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_2, tmp_call_arg_element_1, tmp_call_arg_element_2 );
Py_DECREF( tmp_call_arg_element_1 );
Py_DECREF( tmp_call_arg_element_2 );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 358;
tmp_assign_source_1 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 358;
goto frame_exception_exit_1;
}
assert( var_result.object == NULL );
var_result.object = tmp_assign_source_1;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 359;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = par_self.object;
if ( tmp_call_arg_element_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 359;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 359;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_3, tmp_call_arg_element_3 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 359;
goto frame_exception_exit_1;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 359;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_2;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_3 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_3 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 359;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_2 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_4 = MAKE_ITERATOR( tmp_iter_arg_2 );
if ( tmp_assign_source_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 359;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__source_iter.object == NULL)
{
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_4;
}
else
{
PyObject *old = tmp_tuple_unpack_1__source_iter.object;
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_4;
Py_DECREF( old );
}
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_5 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_5 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 359;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_1.object == NULL)
{
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_5;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_1.object;
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_5;
Py_DECREF( old );
}
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_6 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_6 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 359;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_2.object == NULL)
{
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_6;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_2.object;
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_6;
Py_DECREF( old );
}
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
// Tried code
tmp_iter_arg_3 = tmp_tuple_unpack_1__element_1.object;
tmp_assign_source_7 = MAKE_ITERATOR( tmp_iter_arg_3 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 359;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__source_iter.object == NULL)
{
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_7;
}
else
{
PyObject *old = tmp_tuple_unpack_2__source_iter.object;
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_7;
Py_DECREF( old );
}
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_8 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_8 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 359;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_1.object == NULL)
{
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_8;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_1.object;
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_8;
Py_DECREF( old );
}
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_9 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_9 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 359;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_2.object == NULL)
{
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_9;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_2.object;
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_9;
Py_DECREF( old );
}
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
tmp_assign_source_10 = tmp_tuple_unpack_2__element_1.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_10 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_10 );
Py_DECREF( old );
}
tmp_assign_source_11 = tmp_tuple_unpack_2__element_2.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_11 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_11 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_2;
}
goto finally_end_1;
finally_end_1:;
tmp_assign_source_12 = tmp_tuple_unpack_1__element_2.object;
if (var_v.object == NULL)
{
var_v.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
}
else
{
PyObject *old = var_v.object;
var_v.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_1;
}
goto finally_end_2;
finally_end_2:;
tmp_assign_source_13 = var_result.object;
if ( tmp_assign_source_13 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 19941 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 360;
goto try_finally_handler_1;
}
if (tmp_inplace_assign_1__inplace_target.object == NULL)
{
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_target.object;
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
Py_DECREF( old );
}
// Tried code
tmp_assign_source_14 = var_i.object;
if ( tmp_assign_source_14 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
if (tmp_inplace_assign_1__inplace_subscript.object == NULL)
{
tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_14 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_subscript.object;
tmp_inplace_assign_1__inplace_subscript.object = INCREASE_REFCOUNT( tmp_assign_source_14 );
Py_DECREF( old );
}
tmp_subscr_target_2 = tmp_inplace_assign_1__inplace_target.object;
tmp_subscr_subscript_2 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_binop_left_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_binop_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_binop_left_2 = var_v.object;
if ( tmp_binop_left_2 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 4481 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_subscr_target_3 = par_other.object;
if ( tmp_subscr_target_3 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_subscr_subscript_3 = var_j.object;
if ( tmp_subscr_subscript_3 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_binop_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 );
if ( tmp_binop_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_1 );
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_binop_right_1 = BINARY_OPERATION_MUL( tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_right_2 );
if ( tmp_binop_right_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_1 );
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_ass_subvalue_1 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_1, tmp_binop_right_1 );
Py_DECREF( tmp_binop_left_1 );
Py_DECREF( tmp_binop_right_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
tmp_ass_subscribed_1 = tmp_inplace_assign_1__inplace_target.object;
tmp_ass_subscript_1 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 360;
goto try_finally_handler_4;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_1__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_1__inplace_target.object );
tmp_inplace_assign_1__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_1__inplace_subscript.object );
tmp_inplace_assign_1__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_1;
}
goto finally_end_3;
finally_end_3:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 359;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto frame_exception_exit_1;
}
goto finally_end_4;
finally_end_4:;
tmp_return_value = var_result.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 19941 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 361;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_result.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_result,
var_result.object
);
}
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((var_v.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_v,
var_v.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_mul_vector() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_mul_vector() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_n_vecs;
PyObjectLocalVariable var_result;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectLocalVariable var_v;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObjectTempVariable tmp_tuple_unpack_3__source_iter;
PyObjectTempVariable tmp_tuple_unpack_3__element_1;
PyObjectTempVariable tmp_tuple_unpack_3__element_2;
PyObjectTempVariable tmp_inplace_assign_1__inplace_target;
PyObjectTempVariable tmp_inplace_assign_1__inplace_subscript;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_attempt_3;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_iterator_name_3;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_subscript_3;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_subscr_target_3;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
PyObject *tmp_unpack_5;
PyObject *tmp_unpack_6;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_137a87d207db1afc6e1c45d733f510e1, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 365;
goto try_finally_handler_1;
}
tmp_iter_arg_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 365;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 365;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 365;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 365;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_source_name_2 = par_other.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 366;
goto frame_exception_exit_1;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 366;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_1 = const_int_pos_1;
tmp_assign_source_6 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 366;
goto frame_exception_exit_1;
}
assert( var_n_vecs.object == NULL );
var_n_vecs.object = tmp_assign_source_6;
tmp_source_name_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_3 == NULL ))
{
tmp_source_name_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_zeros );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_M.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_n_vecs.object;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 1, tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_upcast );
}
if ( tmp_called_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260764 ], 35, 0 );
exception_tb = NULL;
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_dtype );
if ( tmp_call_arg_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_source_name_5 = par_other.object;
if ( tmp_source_name_5 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
Py_DECREF( tmp_call_arg_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_dtype );
if ( tmp_call_arg_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
Py_DECREF( tmp_call_arg_element_1 );
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 367;
tmp_dict_value_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_2, tmp_call_arg_element_1, tmp_call_arg_element_2 );
Py_DECREF( tmp_call_arg_element_1 );
Py_DECREF( tmp_call_arg_element_2 );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 367;
tmp_assign_source_7 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 367;
goto frame_exception_exit_1;
}
assert( var_result.object == NULL );
var_result.object = tmp_assign_source_7;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 368;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = par_self.object;
if ( tmp_call_arg_element_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 368;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 368;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_3, tmp_call_arg_element_3 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 368;
goto frame_exception_exit_1;
}
tmp_assign_source_8 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 368;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_8;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_9 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_9 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 368;
goto try_finally_handler_2;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_9;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_9;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_3 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_10 = MAKE_ITERATOR( tmp_iter_arg_3 );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 368;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__source_iter.object == NULL)
{
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_10;
}
else
{
PyObject *old = tmp_tuple_unpack_2__source_iter.object;
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_10;
Py_DECREF( old );
}
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_11 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_11 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 368;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_1.object == NULL)
{
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_11;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_1.object;
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_11;
Py_DECREF( old );
}
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_12 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_12 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 368;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_2.object == NULL)
{
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_12;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_2.object;
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_12;
Py_DECREF( old );
}
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
// Tried code
tmp_iter_arg_4 = tmp_tuple_unpack_2__element_1.object;
tmp_assign_source_13 = MAKE_ITERATOR( tmp_iter_arg_4 );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 368;
goto try_finally_handler_4;
}
if (tmp_tuple_unpack_3__source_iter.object == NULL)
{
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_13;
}
else
{
PyObject *old = tmp_tuple_unpack_3__source_iter.object;
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_13;
Py_DECREF( old );
}
tmp_unpack_5 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_14 = UNPACK_PARAMETER_NEXT( tmp_unpack_5, 0 );
if ( tmp_assign_source_14 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 368;
goto try_finally_handler_4;
}
if (tmp_tuple_unpack_3__element_1.object == NULL)
{
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_14;
}
else
{
PyObject *old = tmp_tuple_unpack_3__element_1.object;
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_14;
Py_DECREF( old );
}
tmp_unpack_6 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_15 = UNPACK_PARAMETER_NEXT( tmp_unpack_6, 1 );
if ( tmp_assign_source_15 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 368;
goto try_finally_handler_4;
}
if (tmp_tuple_unpack_3__element_2.object == NULL)
{
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_15;
}
else
{
PyObject *old = tmp_tuple_unpack_3__element_2.object;
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_15;
Py_DECREF( old );
}
tmp_iterator_name_3 = tmp_tuple_unpack_3__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_3 ); assert( PyIter_Check( tmp_iterator_name_3 ) );
tmp_iterator_attempt_3 = (*Py_TYPE( tmp_iterator_name_3 )->tp_iternext)( tmp_iterator_name_3 );
if (likely( tmp_iterator_attempt_3 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_3 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_4;
}
tmp_assign_source_16 = tmp_tuple_unpack_3__element_1.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_16 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_16 );
Py_DECREF( old );
}
tmp_assign_source_17 = tmp_tuple_unpack_3__element_2.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_3__source_iter.object );
tmp_tuple_unpack_3__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_1.object );
tmp_tuple_unpack_3__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_2.object );
tmp_tuple_unpack_3__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_3;
}
goto finally_end_2;
finally_end_2:;
tmp_assign_source_18 = tmp_tuple_unpack_2__element_2.object;
if (var_v.object == NULL)
{
var_v.object = INCREASE_REFCOUNT( tmp_assign_source_18 );
}
else
{
PyObject *old = var_v.object;
var_v.object = INCREASE_REFCOUNT( tmp_assign_source_18 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_2;
}
goto finally_end_3;
finally_end_3:;
tmp_assign_source_19 = var_result.object;
if ( tmp_assign_source_19 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 19941 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 369;
goto try_finally_handler_2;
}
if (tmp_inplace_assign_1__inplace_target.object == NULL)
{
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_target.object;
tmp_inplace_assign_1__inplace_target.object = INCREASE_REFCOUNT( tmp_assign_source_19 );
Py_DECREF( old );
}
// Tried code
tmp_assign_source_20 = PyTuple_New( 2 );
tmp_tuple_element_3 = var_i.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_assign_source_20 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_assign_source_20, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = MAKE_SLICEOBJ( Py_None, Py_None, Py_None );
PyTuple_SET_ITEM( tmp_assign_source_20, 1, tmp_tuple_element_3 );
if (tmp_inplace_assign_1__inplace_subscript.object == NULL)
{
tmp_inplace_assign_1__inplace_subscript.object = tmp_assign_source_20;
}
else
{
PyObject *old = tmp_inplace_assign_1__inplace_subscript.object;
tmp_inplace_assign_1__inplace_subscript.object = tmp_assign_source_20;
Py_DECREF( old );
}
tmp_subscr_target_2 = tmp_inplace_assign_1__inplace_target.object;
tmp_subscr_subscript_2 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_binop_left_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_binop_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
tmp_binop_left_2 = var_v.object;
if ( tmp_binop_left_2 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 4481 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
tmp_subscr_target_3 = par_other.object;
if ( tmp_subscr_target_3 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
tmp_subscr_subscript_3 = PyTuple_New( 2 );
tmp_tuple_element_4 = var_j.object;
if ( tmp_tuple_element_4 == NULL )
{
Py_DECREF( tmp_binop_left_1 );
Py_DECREF( tmp_subscr_subscript_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
Py_INCREF( tmp_tuple_element_4 );
PyTuple_SET_ITEM( tmp_subscr_subscript_3, 0, tmp_tuple_element_4 );
tmp_tuple_element_4 = MAKE_SLICEOBJ( Py_None, Py_None, Py_None );
PyTuple_SET_ITEM( tmp_subscr_subscript_3, 1, tmp_tuple_element_4 );
tmp_binop_right_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 );
Py_DECREF( tmp_subscr_subscript_3 );
if ( tmp_binop_right_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_1 );
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
tmp_binop_right_1 = BINARY_OPERATION_MUL( tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_right_2 );
if ( tmp_binop_right_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_binop_left_1 );
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
tmp_ass_subvalue_1 = BINARY_OPERATION( PyNumber_InPlaceAdd, tmp_binop_left_1, tmp_binop_right_1 );
Py_DECREF( tmp_binop_left_1 );
Py_DECREF( tmp_binop_right_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
tmp_ass_subscribed_1 = tmp_inplace_assign_1__inplace_target.object;
tmp_ass_subscript_1 = tmp_inplace_assign_1__inplace_subscript.object;
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 369;
goto try_finally_handler_5;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
tmp_result = tmp_inplace_assign_1__inplace_target.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_inplace_assign_1__inplace_target.object );
tmp_inplace_assign_1__inplace_target.object = NULL;
}
assert( tmp_result != false );
Py_XDECREF( tmp_inplace_assign_1__inplace_subscript.object );
tmp_inplace_assign_1__inplace_subscript.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_2;
}
goto finally_end_4;
finally_end_4:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 368;
goto try_finally_handler_2;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto frame_exception_exit_1;
}
goto finally_end_5;
finally_end_5:;
tmp_return_value = var_result.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 19941 ], 52, 0 );
exception_tb = NULL;
frame_function->f_lineno = 370;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_n_vecs.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_n_vecs,
var_n_vecs.object
);
}
if ((var_result.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_result,
var_result.object
);
}
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((var_v.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_v,
var_v.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_mul_multivector() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_mul_multivector() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_val;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_right_1;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_next_source_1;
PyObject *tmp_raise_type_1;
bool tmp_result;
PyObject *tmp_return_value;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_6e93982d14f0c99d056ea8194f80022d, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isscalarlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalarlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259640 ], 41, 0 );
exception_tb = NULL;
frame_function->f_lineno = 373;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_other.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 373;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 373;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 373;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 373;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 375;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = par_self.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 375;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 375;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 375;
goto frame_exception_exit_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 375;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_1;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_2 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_2 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 375;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_2;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_2;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_2 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_3 = MAKE_ITERATOR( tmp_iter_arg_2 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 375;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__source_iter.object == NULL)
{
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_3;
}
else
{
PyObject *old = tmp_tuple_unpack_1__source_iter.object;
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_3;
Py_DECREF( old );
}
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 375;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_1.object == NULL)
{
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_4;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_1.object;
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_4;
Py_DECREF( old );
}
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_5 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_5 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 375;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_2.object == NULL)
{
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_5;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_2.object;
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_5;
Py_DECREF( old );
}
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
tmp_assign_source_6 = tmp_tuple_unpack_1__element_1.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
Py_DECREF( old );
}
tmp_assign_source_7 = tmp_tuple_unpack_1__element_2.object;
if (var_val.object == NULL)
{
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_7 );
}
else
{
PyObject *old = var_val.object;
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_7 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_1;
}
goto finally_end_1;
finally_end_1:;
tmp_binop_left_1 = var_val.object;
if ( tmp_binop_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 28580 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 376;
goto try_finally_handler_1;
}
tmp_binop_right_1 = par_other.object;
if ( tmp_binop_right_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 376;
goto try_finally_handler_1;
}
tmp_ass_subvalue_1 = BINARY_OPERATION_MUL( tmp_binop_left_1, tmp_binop_right_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 376;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = par_self.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 376;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = var_key.object;
if ( tmp_ass_subscript_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 376;
goto try_finally_handler_1;
}
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 376;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 375;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto frame_exception_exit_1;
}
goto finally_end_2;
finally_end_2:;
tmp_return_value = par_self.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 378;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
goto branch_end_1;
branch_no_1:;
tmp_raise_type_1 = PyExc_NotImplementedError;
exception_type = INCREASE_REFCOUNT( tmp_raise_type_1 );
frame_function->f_lineno = 380;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_end_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_val.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_val,
var_val.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__imul__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__imul__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_res_dtype;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_val;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_left_2;
PyObject *tmp_binop_right_1;
PyObject *tmp_binop_right_2;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
PyObject *tmp_tuple_element_1;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_82c33e9a01ae05dc87ff874d87a21106, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isscalarlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalarlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259640 ], 41, 0 );
exception_tb = NULL;
frame_function->f_lineno = 383;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_other.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 383;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 383;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 383;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 383;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast_scalar );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_upcast_scalar );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267718 ], 42, 0 );
exception_tb = NULL;
frame_function->f_lineno = 384;
goto frame_exception_exit_1;
}
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 384;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_dtype );
if ( tmp_call_arg_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 384;
goto frame_exception_exit_1;
}
tmp_call_arg_element_3 = par_other.object;
if ( tmp_call_arg_element_3 == NULL )
{
Py_DECREF( tmp_call_arg_element_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 384;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 384;
tmp_assign_source_1 = CALL_FUNCTION_WITH_ARGS2( tmp_called_2, tmp_call_arg_element_2, tmp_call_arg_element_3 );
Py_DECREF( tmp_call_arg_element_2 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 384;
goto frame_exception_exit_1;
}
assert( var_res_dtype.object == NULL );
var_res_dtype.object = tmp_assign_source_1;
tmp_called_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_3 == NULL ))
{
tmp_called_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 385;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 385;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 385;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_dict_value_1 = var_res_dtype.object;
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
frame_function->f_lineno = 385;
tmp_assign_source_2 = CALL_FUNCTION( tmp_called_3, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 385;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_2;
tmp_called_4 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_4 == NULL ))
{
tmp_called_4 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 387;
goto frame_exception_exit_1;
}
tmp_call_arg_element_4 = par_self.object;
if ( tmp_call_arg_element_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 387;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 387;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_4, tmp_call_arg_element_4 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 387;
goto frame_exception_exit_1;
}
tmp_assign_source_3 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 387;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_3;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_4 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_4 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 387;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_4;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_4;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_2 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_5 = MAKE_ITERATOR( tmp_iter_arg_2 );
if ( tmp_assign_source_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 387;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__source_iter.object == NULL)
{
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_5;
}
else
{
PyObject *old = tmp_tuple_unpack_1__source_iter.object;
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_5;
Py_DECREF( old );
}
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_6 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_6 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 387;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_1.object == NULL)
{
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_6;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_1.object;
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_6;
Py_DECREF( old );
}
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_7 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_7 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 387;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_2.object == NULL)
{
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_7;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_2.object;
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_7;
Py_DECREF( old );
}
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
tmp_assign_source_8 = tmp_tuple_unpack_1__element_1.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_8 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_8 );
Py_DECREF( old );
}
tmp_assign_source_9 = tmp_tuple_unpack_1__element_2.object;
if (var_val.object == NULL)
{
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
}
else
{
PyObject *old = var_val.object;
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_1;
}
goto finally_end_1;
finally_end_1:;
tmp_binop_left_1 = var_val.object;
if ( tmp_binop_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 28580 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 388;
goto try_finally_handler_1;
}
tmp_binop_right_1 = par_other.object;
if ( tmp_binop_right_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 388;
goto try_finally_handler_1;
}
tmp_ass_subvalue_1 = BINARY_OPERATION( PyNumber_TrueDivide, tmp_binop_left_1, tmp_binop_right_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 388;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 388;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = var_key.object;
if ( tmp_ass_subscript_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 388;
goto try_finally_handler_1;
}
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 388;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 387;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto frame_exception_exit_1;
}
goto finally_end_2;
finally_end_2:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 390;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
goto branch_end_1;
branch_no_1:;
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 392;
goto frame_exception_exit_1;
}
tmp_called_5 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_tocsr );
if ( tmp_called_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 392;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 392;
tmp_binop_left_2 = CALL_FUNCTION_NO_ARGS( tmp_called_5 );
Py_DECREF( tmp_called_5 );
if ( tmp_binop_left_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 392;
goto frame_exception_exit_1;
}
tmp_binop_right_2 = par_other.object;
if ( tmp_binop_right_2 == NULL )
{
Py_DECREF( tmp_binop_left_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 392;
goto frame_exception_exit_1;
}
tmp_return_value = BINARY_OPERATION( PyNumber_TrueDivide, tmp_binop_left_2, tmp_binop_right_2 );
Py_DECREF( tmp_binop_left_2 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 392;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
branch_end_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_res_dtype.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_res_dtype,
var_res_dtype.object
);
}
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_val.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_val,
var_val.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__truediv__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__truediv__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_other )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_other; par_other.object = _python_par_other;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_val;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_binop_left_1;
PyObject *tmp_binop_right_1;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_name_1;
PyObject *tmp_next_source_1;
PyObject *tmp_raise_type_1;
bool tmp_result;
PyObject *tmp_return_value;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_b75db694b0194d2f30ab7e7ebf5f0d49, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isscalarlike );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isscalarlike );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 259640 ], 41, 0 );
exception_tb = NULL;
frame_function->f_lineno = 395;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_other.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 395;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 395;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 395;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 395;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 397;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = par_self.object;
if ( tmp_call_arg_element_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 397;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 397;
tmp_iter_arg_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_2 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 397;
goto frame_exception_exit_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 397;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_1;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_2 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_2 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 397;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_2;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_2;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_2 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_3 = MAKE_ITERATOR( tmp_iter_arg_2 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 397;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__source_iter.object == NULL)
{
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_3;
}
else
{
PyObject *old = tmp_tuple_unpack_1__source_iter.object;
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_3;
Py_DECREF( old );
}
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_4 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_4 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 397;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_1.object == NULL)
{
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_4;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_1.object;
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_4;
Py_DECREF( old );
}
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_5 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_5 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 397;
goto try_finally_handler_2;
}
if (tmp_tuple_unpack_1__element_2.object == NULL)
{
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_5;
}
else
{
PyObject *old = tmp_tuple_unpack_1__element_2.object;
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_5;
Py_DECREF( old );
}
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
tmp_assign_source_6 = tmp_tuple_unpack_1__element_1.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_6 );
Py_DECREF( old );
}
tmp_assign_source_7 = tmp_tuple_unpack_1__element_2.object;
if (var_val.object == NULL)
{
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_7 );
}
else
{
PyObject *old = var_val.object;
var_val.object = INCREASE_REFCOUNT( tmp_assign_source_7 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto try_finally_handler_1;
}
goto finally_end_1;
finally_end_1:;
tmp_binop_left_1 = var_val.object;
if ( tmp_binop_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 28580 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 398;
goto try_finally_handler_1;
}
tmp_binop_right_1 = par_other.object;
if ( tmp_binop_right_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5753 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 398;
goto try_finally_handler_1;
}
tmp_ass_subvalue_1 = BINARY_OPERATION( PyNumber_TrueDivide, tmp_binop_left_1, tmp_binop_right_1 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 398;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = par_self.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 398;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = var_key.object;
if ( tmp_ass_subscript_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 398;
goto try_finally_handler_1;
}
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 398;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 397;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto frame_exception_exit_1;
}
goto finally_end_2;
finally_end_2:;
tmp_return_value = par_self.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 399;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
goto branch_end_1;
branch_no_1:;
tmp_raise_type_1 = PyExc_NotImplementedError;
exception_type = INCREASE_REFCOUNT( tmp_raise_type_1 );
frame_function->f_lineno = 401;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_end_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_val.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_val,
var_val.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_other.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_other,
par_other.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_other = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "__itruediv__() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_other == key )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_other, key ) == 1 )
{
assert( _python_par_other == NULL );
_python_par_other = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"__itruediv__() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_other != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_other = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_other == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_other = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_other == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_other };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_other );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_other );
return NULL;
}
static PyObject *dparse_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_e3810863f4fd84d16bd7d4d28a027b78, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 410;
goto try_finally_handler_1;
}
tmp_iter_arg_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 410;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 410;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 410;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 410;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 411;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_N.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 71377 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 411;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_M.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 411;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 1, tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 411;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 411;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 411;
tmp_assign_source_6 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 411;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_6;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 412;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_self.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 412;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 412;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_1 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 412;
goto frame_exception_exit_1;
}
tmp_assign_source_7 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 412;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_7;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_8 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_8 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 412;
goto try_finally_handler_2;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_8;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_8;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_3 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_9 = MAKE_ITERATOR( tmp_iter_arg_3 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 412;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__source_iter.object == NULL)
{
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_9;
}
else
{
PyObject *old = tmp_tuple_unpack_2__source_iter.object;
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_9;
Py_DECREF( old );
}
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_10 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_10 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 412;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_1.object == NULL)
{
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_10;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_1.object;
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_10;
Py_DECREF( old );
}
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_11 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_11 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 412;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_2.object == NULL)
{
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_11;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_2.object;
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_11;
Py_DECREF( old );
}
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
tmp_assign_source_12 = tmp_tuple_unpack_2__element_1.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
Py_DECREF( old );
}
tmp_assign_source_13 = tmp_tuple_unpack_2__element_2.object;
if (var_value.object == NULL)
{
var_value.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
}
else
{
PyObject *old = var_value.object;
var_value.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_2;
}
goto finally_end_2;
finally_end_2:;
tmp_ass_subvalue_1 = var_value.object;
if ( tmp_ass_subvalue_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5634 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
tmp_ass_subscript_1 = PyTuple_New( 2 );
tmp_subscr_target_1 = var_key.object;
if ( tmp_subscr_target_1 == NULL )
{
Py_DECREF( tmp_ass_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
tmp_subscr_subscript_1 = const_int_pos_1;
tmp_tuple_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
if ( tmp_tuple_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_ass_subscript_1 );
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
PyTuple_SET_ITEM( tmp_ass_subscript_1, 0, tmp_tuple_element_3 );
tmp_subscr_target_2 = var_key.object;
if ( tmp_subscr_target_2 == NULL )
{
Py_DECREF( tmp_ass_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
tmp_subscr_subscript_2 = const_int_0;
tmp_tuple_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_tuple_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_ass_subscript_1 );
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
PyTuple_SET_ITEM( tmp_ass_subscript_1, 1, tmp_tuple_element_3 );
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 413;
goto try_finally_handler_2;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 412;
goto try_finally_handler_2;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto frame_exception_exit_1;
}
goto finally_end_3;
finally_end_3:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 414;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_value.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_value,
var_value.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "transpose() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"transpose() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_new;
PyObjectLocalVariable var_key;
PyObjectLocalVariable var_value;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_next_source_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_b97109eff028445470981edf52d80453, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
// Tried code
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 419;
goto try_finally_handler_1;
}
tmp_iter_arg_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 419;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 419;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 419;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 419;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 420;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = PyTuple_New( 2 );
tmp_tuple_element_2 = var_N.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 71377 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 420;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = var_M.object;
if ( tmp_tuple_element_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 420;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 1, tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 420;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 420;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 420;
tmp_assign_source_6 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 420;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_6;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_iteritems );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267760 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 421;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_self.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 421;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 421;
tmp_iter_arg_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_1 );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 421;
goto frame_exception_exit_1;
}
tmp_assign_source_7 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 421;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_7;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_8 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_8 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 421;
goto try_finally_handler_2;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_8;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_8;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_3 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_9 = MAKE_ITERATOR( tmp_iter_arg_3 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 421;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__source_iter.object == NULL)
{
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_9;
}
else
{
PyObject *old = tmp_tuple_unpack_2__source_iter.object;
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_9;
Py_DECREF( old );
}
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_10 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_10 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 421;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_1.object == NULL)
{
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_10;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_1.object;
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_10;
Py_DECREF( old );
}
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_11 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_11 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 421;
goto try_finally_handler_3;
}
if (tmp_tuple_unpack_2__element_2.object == NULL)
{
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_11;
}
else
{
PyObject *old = tmp_tuple_unpack_2__element_2.object;
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_11;
Py_DECREF( old );
}
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_3;
}
tmp_assign_source_12 = tmp_tuple_unpack_2__element_1.object;
if (var_key.object == NULL)
{
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
}
else
{
PyObject *old = var_key.object;
var_key.object = INCREASE_REFCOUNT( tmp_assign_source_12 );
Py_DECREF( old );
}
tmp_assign_source_13 = tmp_tuple_unpack_2__element_2.object;
if (var_value.object == NULL)
{
var_value.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
}
else
{
PyObject *old = var_value.object;
var_value.object = INCREASE_REFCOUNT( tmp_assign_source_13 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto try_finally_handler_2;
}
goto finally_end_2;
finally_end_2:;
tmp_source_name_3 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_3 == NULL ))
{
tmp_source_name_3 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
tmp_called_3 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_conj );
if ( tmp_called_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
tmp_call_arg_element_2 = var_value.object;
if ( tmp_call_arg_element_2 == NULL )
{
Py_DECREF( tmp_called_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5634 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
frame_function->f_lineno = 422;
tmp_ass_subvalue_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_3, tmp_call_arg_element_2 );
Py_DECREF( tmp_called_3 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
tmp_ass_subscribed_1 = var_new.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
tmp_ass_subscript_1 = PyTuple_New( 2 );
tmp_subscr_target_1 = var_key.object;
if ( tmp_subscr_target_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
tmp_subscr_subscript_1 = const_int_pos_1;
tmp_tuple_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
if ( tmp_tuple_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
PyTuple_SET_ITEM( tmp_ass_subscript_1, 0, tmp_tuple_element_3 );
tmp_subscr_target_2 = var_key.object;
if ( tmp_subscr_target_2 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 15396 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
tmp_subscr_subscript_2 = const_int_0;
tmp_tuple_element_3 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
if ( tmp_tuple_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
PyTuple_SET_ITEM( tmp_ass_subscript_1, 1, tmp_tuple_element_3 );
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 422;
goto try_finally_handler_2;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 421;
goto try_finally_handler_2;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto frame_exception_exit_1;
}
goto finally_end_3;
finally_end_3:;
tmp_return_value = var_new.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 6269 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 423;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((var_key.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_key,
var_key.object
);
}
if ((var_value.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_value,
var_value.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "conjtransp() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"conjtransp() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable var_new;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_assign_source_1;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_tuple_element_1;
NUITKA_MAY_BE_UNUSED PyObject *tmp_unused;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_5c2cacf0590e83195e832f86f0d6392e, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 426;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 426;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 426;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 426;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 426;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 426;
tmp_assign_source_1 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 426;
goto frame_exception_exit_1;
}
assert( var_new.object == NULL );
var_new.object = tmp_assign_source_1;
tmp_source_name_3 = var_new.object;
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_update );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 427;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_self.object;
if ( tmp_call_arg_element_1 == NULL )
{
Py_DECREF( tmp_called_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 427;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 427;
tmp_unused = CALL_FUNCTION_WITH_ARGS1( tmp_called_2, tmp_call_arg_element_1 );
Py_DECREF( tmp_called_2 );
if ( tmp_unused == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 427;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_unused );
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_new.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_new,
var_new.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
tmp_return_value = var_new.object;
Py_INCREF( tmp_return_value );
goto function_return_exit;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "copy() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"copy() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_i )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_i; par_i.object = _python_par_i;
PyObjectLocalVariable var_out;
PyObjectLocalVariable var_j;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_next_source_1;
PyObject *tmp_range_arg_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_subscript_3;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_subscr_target_3;
int tmp_tried_lineno_1;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_fa5e8ce5b294d03031535c035b2a3823, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE_CLASS_SLOT( tmp_source_name_1 );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = PyTuple_New( 2 );
tmp_tuple_element_2 = const_int_pos_1;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 0, tmp_tuple_element_2 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_1 = const_int_pos_1;
tmp_tuple_element_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_tuple_element_1, 1, tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 434;
tmp_assign_source_1 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 434;
goto frame_exception_exit_1;
}
assert( var_out.object == NULL );
var_out.object = tmp_assign_source_1;
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 435;
goto frame_exception_exit_1;
}
tmp_subscr_target_2 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_shape );
if ( tmp_subscr_target_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 435;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_2 = const_int_pos_1;
tmp_range_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
Py_DECREF( tmp_subscr_target_2 );
if ( tmp_range_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 435;
goto frame_exception_exit_1;
}
tmp_iter_arg_1 = BUILTIN_RANGE( tmp_range_arg_1 );
Py_DECREF( tmp_range_arg_1 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 435;
goto frame_exception_exit_1;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 435;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_2;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_3 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_3 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 435;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
Py_DECREF( old );
}
tmp_assign_source_4 = tmp_for_loop_1__iter_value.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
Py_DECREF( old );
}
tmp_subscr_target_3 = par_self.object;
if ( tmp_subscr_target_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 436;
goto try_finally_handler_1;
}
tmp_subscr_subscript_3 = PyTuple_New( 2 );
tmp_tuple_element_3 = par_i.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_subscr_subscript_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 436;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_subscr_subscript_3, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = var_j.object;
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_subscr_subscript_3, 1, tmp_tuple_element_3 );
tmp_ass_subvalue_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 );
Py_DECREF( tmp_subscr_subscript_3 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 436;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = var_out.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 7983 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 436;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = PyTuple_New( 2 );
tmp_tuple_element_4 = const_int_0;
Py_INCREF( tmp_tuple_element_4 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 0, tmp_tuple_element_4 );
tmp_tuple_element_4 = var_j.object;
Py_INCREF( tmp_tuple_element_4 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 1, tmp_tuple_element_4 );
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 436;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 435;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_return_value = var_out.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 7983 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 437;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_out.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_out,
var_out.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
par_i.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_i = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "getrow() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_i == key )
{
assert( _python_par_i == NULL );
_python_par_i = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_i, key ) == 1 )
{
assert( _python_par_i == NULL );
_python_par_i = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"getrow() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_i != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_i = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_i == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_i = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_i == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_i };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_i );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_i );
return NULL;
}
static PyObject *dparse_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_j )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_j; par_j.object = _python_par_j;
PyObjectLocalVariable var_out;
PyObjectLocalVariable var_i;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *tmp_ass_subscribed_1;
PyObject *tmp_ass_subscript_1;
PyObject *tmp_ass_subvalue_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_pos_1;
PyObject *tmp_called_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_next_source_1;
PyObject *tmp_range_arg_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_subscript_3;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_subscr_target_3;
int tmp_tried_lineno_1;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_94bbc4000e17852e0af595ae11ff0168, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE_CLASS_SLOT( tmp_source_name_1 );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_tuple_element_1 = PyTuple_New( 2 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_tuple_element_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_tuple_element_1 );
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_tuple_element_1, 0, tmp_tuple_element_2 );
tmp_tuple_element_2 = const_int_pos_1;
Py_INCREF( tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_tuple_element_1, 1, tmp_tuple_element_2 );
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 443;
tmp_assign_source_1 = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 443;
goto frame_exception_exit_1;
}
assert( var_out.object == NULL );
var_out.object = tmp_assign_source_1;
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 444;
goto frame_exception_exit_1;
}
tmp_subscr_target_2 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_shape );
if ( tmp_subscr_target_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 444;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_2 = const_int_0;
tmp_range_arg_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
Py_DECREF( tmp_subscr_target_2 );
if ( tmp_range_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 444;
goto frame_exception_exit_1;
}
tmp_iter_arg_1 = BUILTIN_RANGE( tmp_range_arg_1 );
Py_DECREF( tmp_range_arg_1 );
if ( tmp_iter_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 444;
goto frame_exception_exit_1;
}
tmp_assign_source_2 = MAKE_ITERATOR( tmp_iter_arg_1 );
Py_DECREF( tmp_iter_arg_1 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 444;
goto frame_exception_exit_1;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_2;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_3 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_3 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 444;
goto try_finally_handler_1;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_3;
Py_DECREF( old );
}
tmp_assign_source_4 = tmp_for_loop_1__iter_value.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
Py_DECREF( old );
}
tmp_subscr_target_3 = par_self.object;
if ( tmp_subscr_target_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 445;
goto try_finally_handler_1;
}
tmp_subscr_subscript_3 = PyTuple_New( 2 );
tmp_tuple_element_3 = var_i.object;
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_subscr_subscript_3, 0, tmp_tuple_element_3 );
tmp_tuple_element_3 = par_j.object;
if ( tmp_tuple_element_3 == NULL )
{
Py_DECREF( tmp_subscr_subscript_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 445;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_3 );
PyTuple_SET_ITEM( tmp_subscr_subscript_3, 1, tmp_tuple_element_3 );
tmp_ass_subvalue_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_3, tmp_subscr_subscript_3 );
Py_DECREF( tmp_subscr_subscript_3 );
if ( tmp_ass_subvalue_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 445;
goto try_finally_handler_1;
}
tmp_ass_subscribed_1 = var_out.object;
if ( tmp_ass_subscribed_1 == NULL )
{
Py_DECREF( tmp_ass_subvalue_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 7983 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 445;
goto try_finally_handler_1;
}
tmp_ass_subscript_1 = PyTuple_New( 2 );
tmp_tuple_element_4 = var_i.object;
Py_INCREF( tmp_tuple_element_4 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 0, tmp_tuple_element_4 );
tmp_tuple_element_4 = const_int_0;
Py_INCREF( tmp_tuple_element_4 );
PyTuple_SET_ITEM( tmp_ass_subscript_1, 1, tmp_tuple_element_4 );
tmp_result = SET_SUBSCRIPT( tmp_ass_subscribed_1, tmp_ass_subscript_1, tmp_ass_subvalue_1 );
Py_DECREF( tmp_ass_subscript_1 );
Py_DECREF( tmp_ass_subvalue_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 445;
goto try_finally_handler_1;
}
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 444;
goto try_finally_handler_1;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_return_value = var_out.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 7983 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 446;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_out.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_out,
var_out.object
);
}
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
par_j.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_j = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "getcol() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_j == key )
{
assert( _python_par_j == NULL );
_python_par_j = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_j, key ) == 1 )
{
assert( _python_par_j == NULL );
_python_par_j = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"getcol() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_j != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_j = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_j == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_j = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_j == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_j };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_j );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_j );
return NULL;
}
static PyObject *dparse_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable var_coo_matrix;
PyObjectLocalVariable var_idx_dtype;
PyObjectLocalVariable var_data;
PyObjectLocalVariable var_indices;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_call_arg_element_4;
PyObject *tmp_call_kw_1;
PyObject *tmp_call_kw_2;
PyObject *tmp_call_kw_3;
PyObject *tmp_call_kw_4;
PyObject *tmp_call_kw_5;
PyObject *tmp_call_pos_1;
PyObject *tmp_call_pos_2;
PyObject *tmp_call_pos_3;
PyObject *tmp_call_pos_4;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_called_3;
PyObject *tmp_called_4;
PyObject *tmp_called_5;
PyObject *tmp_called_6;
PyObject *tmp_called_7;
PyObject *tmp_called_8;
PyObject *tmp_called_9;
PyObject *tmp_called_10;
int tmp_cmp_Eq_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_right_1;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_key_3;
PyObject *tmp_dict_key_4;
PyObject *tmp_dict_key_5;
PyObject *tmp_dict_key_6;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_dict_value_3;
PyObject *tmp_dict_value_4;
PyObject *tmp_dict_value_5;
PyObject *tmp_dict_value_6;
PyObject *tmp_frame_locals;
PyObject *tmp_import_globals_1;
PyObject *tmp_import_locals_1;
PyObject *tmp_import_name_from_1;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
PyObject *tmp_source_name_3;
PyObject *tmp_source_name_4;
PyObject *tmp_source_name_5;
PyObject *tmp_source_name_6;
PyObject *tmp_source_name_7;
PyObject *tmp_source_name_8;
PyObject *tmp_source_name_9;
PyObject *tmp_source_name_10;
PyObject *tmp_source_name_11;
PyObject *tmp_source_name_12;
PyObject *tmp_source_name_13;
PyObject *tmp_subscr_subscript_1;
PyObject *tmp_subscr_subscript_2;
PyObject *tmp_subscr_target_1;
PyObject *tmp_subscr_target_2;
PyObject *tmp_tuple_element_1;
PyObject *tmp_tuple_element_2;
PyObject *tmp_tuple_element_3;
PyObject *tmp_tuple_element_4;
PyObject *tmp_tuple_element_5;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_531dba2787dca289c66b168dae53a067, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_import_globals_1 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
tmp_import_locals_1 = PyDict_New();
if ((var_coo_matrix.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_coo_matrix,
var_coo_matrix.object
);
}
if ((var_idx_dtype.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_idx_dtype,
var_idx_dtype.object
);
}
if ((var_data.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_data,
var_data.object
);
}
if ((var_indices.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_indices,
var_indices.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_import_locals_1,
const_str_plain_self,
par_self.object
);
}
frame_function->f_lineno = 450;
tmp_import_name_from_1 = IMPORT_MODULE( const_str_plain_coo, tmp_import_globals_1, tmp_import_locals_1, const_tuple_str_plain_coo_matrix_tuple, const_int_pos_1 );
Py_DECREF( tmp_import_locals_1 );
if ( tmp_import_name_from_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 450;
goto frame_exception_exit_1;
}
tmp_assign_source_1 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_coo_matrix );
Py_DECREF( tmp_import_name_from_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 450;
goto frame_exception_exit_1;
}
assert( var_coo_matrix.object == NULL );
var_coo_matrix.object = tmp_assign_source_1;
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 451;
goto frame_exception_exit_1;
}
tmp_compare_left_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_nnz );
if ( tmp_compare_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 451;
goto frame_exception_exit_1;
}
tmp_compare_right_1 = const_int_0;
tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_Eq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_1 );
frame_function->f_lineno = 451;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_1 );
if (tmp_cmp_Eq_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_called_1 = var_coo_matrix.object;
tmp_call_pos_1 = PyTuple_New( 1 );
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 452;
goto frame_exception_exit_1;
}
tmp_tuple_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_shape );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
frame_function->f_lineno = 452;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_1, 0, tmp_tuple_element_1 );
tmp_call_kw_1 = _PyDict_NewPresized( 1 );
tmp_source_name_3 = par_self.object;
if ( tmp_source_name_3 == NULL )
{
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 452;
goto frame_exception_exit_1;
}
tmp_dict_value_1 = LOOKUP_ATTRIBUTE( tmp_source_name_3, const_str_plain_dtype );
if ( tmp_dict_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
frame_function->f_lineno = 452;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
Py_DECREF( tmp_dict_value_1 );
frame_function->f_lineno = 452;
tmp_return_value = CALL_FUNCTION( tmp_called_1, tmp_call_pos_1, tmp_call_kw_1 );
Py_DECREF( tmp_call_pos_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 452;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
goto branch_end_1;
branch_no_1:;
tmp_called_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_get_index_dtype );
if (unlikely( tmp_called_2 == NULL ))
{
tmp_called_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_get_index_dtype );
}
if ( tmp_called_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260574 ], 44, 0 );
exception_tb = NULL;
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_call_kw_2 = _PyDict_NewPresized( 1 );
tmp_called_3 = LOOKUP_BUILTIN( const_str_plain_max );
if ( tmp_called_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_source_name_4 = par_self.object;
if ( tmp_source_name_4 == NULL )
{
Py_DECREF( tmp_call_kw_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_subscr_target_1 = LOOKUP_ATTRIBUTE( tmp_source_name_4, const_str_plain_shape );
if ( tmp_subscr_target_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_1 = const_int_0;
tmp_call_arg_element_1 = LOOKUP_SUBSCRIPT( tmp_subscr_target_1, tmp_subscr_subscript_1 );
Py_DECREF( tmp_subscr_target_1 );
if ( tmp_call_arg_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_source_name_5 = par_self.object;
if ( tmp_source_name_5 == NULL )
{
Py_DECREF( tmp_call_kw_2 );
Py_DECREF( tmp_call_arg_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_subscr_target_2 = LOOKUP_ATTRIBUTE( tmp_source_name_5, const_str_plain_shape );
if ( tmp_subscr_target_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_kw_2 );
Py_DECREF( tmp_call_arg_element_1 );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_subscr_subscript_2 = const_int_pos_1;
tmp_call_arg_element_2 = LOOKUP_SUBSCRIPT( tmp_subscr_target_2, tmp_subscr_subscript_2 );
Py_DECREF( tmp_subscr_target_2 );
if ( tmp_call_arg_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_kw_2 );
Py_DECREF( tmp_call_arg_element_1 );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 454;
tmp_dict_value_2 = CALL_FUNCTION_WITH_ARGS2( tmp_called_3, tmp_call_arg_element_1, tmp_call_arg_element_2 );
Py_DECREF( tmp_call_arg_element_1 );
Py_DECREF( tmp_call_arg_element_2 );
if ( tmp_dict_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_kw_2 );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
tmp_dict_key_2 = const_str_plain_maxval;
PyDict_SetItem( tmp_call_kw_2, tmp_dict_key_2, tmp_dict_value_2 );
Py_DECREF( tmp_dict_value_2 );
frame_function->f_lineno = 454;
tmp_assign_source_2 = CALL_FUNCTION_WITH_KEYARGS( tmp_called_2, tmp_call_kw_2 );
Py_DECREF( tmp_call_kw_2 );
if ( tmp_assign_source_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 454;
goto frame_exception_exit_1;
}
assert( var_idx_dtype.object == NULL );
var_idx_dtype.object = tmp_assign_source_2;
tmp_source_name_6 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_6 == NULL ))
{
tmp_source_name_6 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_6 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
tmp_called_4 = LOOKUP_ATTRIBUTE( tmp_source_name_6, const_str_plain_asarray );
if ( tmp_called_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
tmp_call_pos_2 = PyTuple_New( 1 );
tmp_called_5 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__list );
if (unlikely( tmp_called_5 == NULL ))
{
tmp_called_5 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain__list );
}
if ( tmp_called_5 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267798 ], 34, 0 );
exception_tb = NULL;
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
tmp_source_name_7 = par_self.object;
if ( tmp_source_name_7 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
tmp_called_6 = LOOKUP_ATTRIBUTE( tmp_source_name_7, const_str_plain_values );
if ( tmp_called_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 455;
tmp_call_arg_element_3 = CALL_FUNCTION_NO_ARGS( tmp_called_6 );
Py_DECREF( tmp_called_6 );
if ( tmp_call_arg_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 455;
tmp_tuple_element_2 = CALL_FUNCTION_WITH_ARGS1( tmp_called_5, tmp_call_arg_element_3 );
Py_DECREF( tmp_call_arg_element_3 );
if ( tmp_tuple_element_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_2, 0, tmp_tuple_element_2 );
tmp_call_kw_3 = _PyDict_NewPresized( 1 );
tmp_source_name_8 = par_self.object;
if ( tmp_source_name_8 == NULL )
{
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
tmp_dict_value_3 = LOOKUP_ATTRIBUTE( tmp_source_name_8, const_str_plain_dtype );
if ( tmp_dict_value_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_3 );
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
tmp_dict_key_3 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_3, tmp_dict_key_3, tmp_dict_value_3 );
Py_DECREF( tmp_dict_value_3 );
frame_function->f_lineno = 455;
tmp_assign_source_3 = CALL_FUNCTION( tmp_called_4, tmp_call_pos_2, tmp_call_kw_3 );
Py_DECREF( tmp_called_4 );
Py_DECREF( tmp_call_pos_2 );
Py_DECREF( tmp_call_kw_3 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 455;
goto frame_exception_exit_1;
}
assert( var_data.object == NULL );
var_data.object = tmp_assign_source_3;
tmp_source_name_10 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np );
if (unlikely( tmp_source_name_10 == NULL ))
{
tmp_source_name_10 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_np );
}
if ( tmp_source_name_10 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 67960 ], 31, 0 );
exception_tb = NULL;
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
tmp_called_7 = LOOKUP_ATTRIBUTE( tmp_source_name_10, const_str_plain_asarray );
if ( tmp_called_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
tmp_call_pos_3 = PyTuple_New( 1 );
tmp_called_8 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__list );
if (unlikely( tmp_called_8 == NULL ))
{
tmp_called_8 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain__list );
}
if ( tmp_called_8 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_pos_3 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267798 ], 34, 0 );
exception_tb = NULL;
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
tmp_source_name_11 = par_self.object;
if ( tmp_source_name_11 == NULL )
{
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_pos_3 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
tmp_called_9 = LOOKUP_ATTRIBUTE( tmp_source_name_11, const_str_plain_keys );
if ( tmp_called_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_pos_3 );
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 456;
tmp_call_arg_element_4 = CALL_FUNCTION_NO_ARGS( tmp_called_9 );
Py_DECREF( tmp_called_9 );
if ( tmp_call_arg_element_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_pos_3 );
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 456;
tmp_tuple_element_3 = CALL_FUNCTION_WITH_ARGS1( tmp_called_8, tmp_call_arg_element_4 );
Py_DECREF( tmp_call_arg_element_4 );
if ( tmp_tuple_element_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_pos_3 );
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
PyTuple_SET_ITEM( tmp_call_pos_3, 0, tmp_tuple_element_3 );
tmp_call_kw_4 = _PyDict_NewPresized( 1 );
tmp_dict_value_4 = var_idx_dtype.object;
tmp_dict_key_4 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_4, tmp_dict_key_4, tmp_dict_value_4 );
frame_function->f_lineno = 456;
tmp_source_name_9 = CALL_FUNCTION( tmp_called_7, tmp_call_pos_3, tmp_call_kw_4 );
Py_DECREF( tmp_called_7 );
Py_DECREF( tmp_call_pos_3 );
Py_DECREF( tmp_call_kw_4 );
if ( tmp_source_name_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
tmp_assign_source_4 = LOOKUP_ATTRIBUTE( tmp_source_name_9, const_str_plain_T );
Py_DECREF( tmp_source_name_9 );
if ( tmp_assign_source_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 456;
goto frame_exception_exit_1;
}
assert( var_indices.object == NULL );
var_indices.object = tmp_assign_source_4;
tmp_called_10 = var_coo_matrix.object;
tmp_call_pos_4 = PyTuple_New( 1 );
tmp_tuple_element_4 = PyTuple_New( 2 );
tmp_tuple_element_5 = var_data.object;
Py_INCREF( tmp_tuple_element_5 );
PyTuple_SET_ITEM( tmp_tuple_element_4, 0, tmp_tuple_element_5 );
tmp_tuple_element_5 = var_indices.object;
Py_INCREF( tmp_tuple_element_5 );
PyTuple_SET_ITEM( tmp_tuple_element_4, 1, tmp_tuple_element_5 );
PyTuple_SET_ITEM( tmp_call_pos_4, 0, tmp_tuple_element_4 );
tmp_call_kw_5 = _PyDict_NewPresized( 2 );
tmp_source_name_12 = par_self.object;
if ( tmp_source_name_12 == NULL )
{
Py_DECREF( tmp_call_pos_4 );
Py_DECREF( tmp_call_kw_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 457;
goto frame_exception_exit_1;
}
tmp_dict_value_5 = LOOKUP_ATTRIBUTE( tmp_source_name_12, const_str_plain_shape );
if ( tmp_dict_value_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_4 );
Py_DECREF( tmp_call_kw_5 );
frame_function->f_lineno = 457;
goto frame_exception_exit_1;
}
tmp_dict_key_5 = const_str_plain_shape;
PyDict_SetItem( tmp_call_kw_5, tmp_dict_key_5, tmp_dict_value_5 );
Py_DECREF( tmp_dict_value_5 );
tmp_source_name_13 = par_self.object;
if ( tmp_source_name_13 == NULL )
{
Py_DECREF( tmp_call_pos_4 );
Py_DECREF( tmp_call_kw_5 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 457;
goto frame_exception_exit_1;
}
tmp_dict_value_6 = LOOKUP_ATTRIBUTE( tmp_source_name_13, const_str_plain_dtype );
if ( tmp_dict_value_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_call_pos_4 );
Py_DECREF( tmp_call_kw_5 );
frame_function->f_lineno = 457;
goto frame_exception_exit_1;
}
tmp_dict_key_6 = const_str_plain_dtype;
PyDict_SetItem( tmp_call_kw_5, tmp_dict_key_6, tmp_dict_value_6 );
Py_DECREF( tmp_dict_value_6 );
frame_function->f_lineno = 457;
tmp_return_value = CALL_FUNCTION( tmp_called_10, tmp_call_pos_4, tmp_call_kw_5 );
Py_DECREF( tmp_call_pos_4 );
Py_DECREF( tmp_call_kw_5 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 457;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
branch_end_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_coo_matrix.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_coo_matrix,
var_coo_matrix.object
);
}
if ((var_idx_dtype.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_idx_dtype,
var_idx_dtype.object
);
}
if ((var_data.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_data,
var_data.object
);
}
if ((var_indices.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_indices,
var_indices.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "tocoo() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"tocoo() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_copy )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_copy; par_copy.object = _python_par_copy;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_called_1;
int tmp_cond_truth_1;
PyObject *tmp_cond_value_1;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_8748d495ab19dc5a5a054b06e9676bdd, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_cond_value_1 = par_copy.object;
if ( tmp_cond_value_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 62933 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 460;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 460;
goto frame_exception_exit_1;
}
if (tmp_cond_truth_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 461;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_copy );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 461;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 461;
tmp_return_value = CALL_FUNCTION_NO_ARGS( tmp_called_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 461;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
goto branch_end_1;
branch_no_1:;
tmp_return_value = par_self.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 463;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
branch_end_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_copy.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_copy,
par_copy.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_copy = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "todok() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_copy == key )
{
assert( _python_par_copy == NULL );
_python_par_copy = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_copy, key ) == 1 )
{
assert( _python_par_copy == NULL );
_python_par_copy = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"todok() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_copy != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_copy = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_copy == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_copy = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_copy == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_copy };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_copy );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_copy );
return NULL;
}
static PyObject *dparse_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_39ed14bcef9fbbc1e42c49304224da75, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 467;
goto frame_exception_exit_1;
}
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_tocoo );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 467;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 467;
tmp_source_name_1 = CALL_FUNCTION_NO_ARGS( tmp_called_2 );
Py_DECREF( tmp_called_2 );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 467;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_tocsr );
Py_DECREF( tmp_source_name_1 );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 467;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 467;
tmp_return_value = CALL_FUNCTION_NO_ARGS( tmp_called_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 467;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "tocsr() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"tocsr() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_48551c06b9cd28c7e20ae32227aaaccd, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 471;
goto frame_exception_exit_1;
}
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_tocoo );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 471;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 471;
tmp_source_name_1 = CALL_FUNCTION_NO_ARGS( tmp_called_2 );
Py_DECREF( tmp_called_2 );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 471;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_tocsc );
Py_DECREF( tmp_source_name_1 );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 471;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 471;
tmp_return_value = CALL_FUNCTION_NO_ARGS( tmp_called_1 );
Py_DECREF( tmp_called_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 471;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "tocsc() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"tocsc() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL ))
{
PyObject *values[] = { _python_par_self };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self );
error_exit:;
Py_XDECREF( _python_par_self );
return NULL;
}
static PyObject *dparse_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_order, PyObject *_python_par_out )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_order; par_order.object = _python_par_order;
PyObjectLocalVariable par_out; par_out.object = _python_par_out;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_call_kw_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_dict_key_1;
PyObject *tmp_dict_key_2;
PyObject *tmp_dict_value_1;
PyObject *tmp_dict_value_2;
PyObject *tmp_frame_locals;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_a8f80bb4d58dec01408f5b4a066b24eb, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_tocoo );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 475;
tmp_source_name_1 = CALL_FUNCTION_NO_ARGS( tmp_called_2 );
Py_DECREF( tmp_called_2 );
if ( tmp_source_name_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_toarray );
Py_DECREF( tmp_source_name_1 );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
tmp_call_kw_1 = _PyDict_NewPresized( 2 );
tmp_dict_value_1 = par_order.object;
if ( tmp_dict_value_1 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 14281 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
tmp_dict_key_1 = const_str_plain_order;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_1, tmp_dict_value_1 );
tmp_dict_value_2 = par_out.object;
if ( tmp_dict_value_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_kw_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 7983 ], 49, 0 );
exception_tb = NULL;
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
tmp_dict_key_2 = const_str_plain_out;
PyDict_SetItem( tmp_call_kw_1, tmp_dict_key_2, tmp_dict_value_2 );
frame_function->f_lineno = 475;
tmp_return_value = CALL_FUNCTION_WITH_KEYARGS( tmp_called_1, tmp_call_kw_1 );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_kw_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 475;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_order.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_order,
par_order.object
);
}
if ((par_out.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_out,
par_out.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_order = NULL;
PyObject *_python_par_out = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "toarray() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_order == key )
{
assert( _python_par_order == NULL );
_python_par_order = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_out == key )
{
assert( _python_par_out == NULL );
_python_par_out = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_order, key ) == 1 )
{
assert( _python_par_order == NULL );
_python_par_order = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_out, key ) == 1 )
{
assert( _python_par_out == NULL );
_python_par_out = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"toarray() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 3 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 3 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_order != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_order = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_order == NULL )
{
if ( 1 + self->m_defaults_given >= 3 )
{
_python_par_order = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 2 < args_given ))
{
if (unlikely( _python_par_out != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 2 );
goto error_exit;
}
_python_par_out = INCREASE_REFCOUNT( args[ 2 ] );
}
else if ( _python_par_out == NULL )
{
if ( 2 + self->m_defaults_given >= 3 )
{
_python_par_out = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 2 - 3 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_order == NULL || _python_par_out == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_order, _python_par_out };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_order, _python_par_out );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_order );
Py_XDECREF( _python_par_out );
return NULL;
}
static PyObject *dparse_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 3 )
{
return impl_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ), INCREASE_REFCOUNT( args[ 2 ] ) );
}
else
{
PyObject *result = fparse_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_self, PyObject *_python_par_shape )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_self; par_self.object = _python_par_self;
PyObjectLocalVariable par_shape; par_shape.object = _python_par_shape;
PyObjectLocalVariable var_newM;
PyObjectLocalVariable var_newN;
PyObjectLocalVariable var_M;
PyObjectLocalVariable var_N;
PyObjectLocalVariable var_i;
PyObjectLocalVariable var_j;
PyObjectTempVariable tmp_tuple_unpack_1__source_iter;
PyObjectTempVariable tmp_tuple_unpack_1__element_1;
PyObjectTempVariable tmp_tuple_unpack_1__element_2;
PyObjectTempVariable tmp_tuple_unpack_2__source_iter;
PyObjectTempVariable tmp_tuple_unpack_2__element_1;
PyObjectTempVariable tmp_tuple_unpack_2__element_2;
PyObjectTempVariable tmp_or_1__value_1;
PyObjectTempVariable tmp_for_loop_1__for_iterator;
PyObjectTempVariable tmp_for_loop_1__iter_value;
PyObjectTempVariable tmp_tuple_unpack_3__source_iter;
PyObjectTempVariable tmp_tuple_unpack_3__element_1;
PyObjectTempVariable tmp_tuple_unpack_3__element_2;
PyObjectTempVariable tmp_or_2__value_1;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *exception_keeper_type_2;
PyObject *exception_keeper_value_2;
PyTracebackObject *exception_keeper_tb_2;
PyObject *exception_keeper_type_3;
PyObject *exception_keeper_value_3;
PyTracebackObject *exception_keeper_tb_3;
PyObject *exception_keeper_type_4;
PyObject *exception_keeper_value_4;
PyTracebackObject *exception_keeper_tb_4;
PyObject *exception_keeper_type_5;
PyObject *exception_keeper_value_5;
PyTracebackObject *exception_keeper_tb_5;
PyObject *exception_keeper_type_6;
PyObject *exception_keeper_value_6;
PyTracebackObject *exception_keeper_tb_6;
PyObject *exception_keeper_type_7;
PyObject *exception_keeper_value_7;
PyTracebackObject *exception_keeper_tb_7;
PyObject *exception_keeper_type_8;
PyObject *exception_keeper_value_8;
PyTracebackObject *exception_keeper_tb_8;
PyObject *exception_keeper_type_9;
PyObject *exception_keeper_value_9;
PyTracebackObject *exception_keeper_tb_9;
PyObject *exception_keeper_type_10;
PyObject *exception_keeper_value_10;
PyTracebackObject *exception_keeper_tb_10;
PyObject *tmp_assattr_name_1;
PyObject *tmp_assattr_target_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_called_1;
PyObject *tmp_called_2;
PyObject *tmp_compexpr_left_1;
PyObject *tmp_compexpr_left_2;
PyObject *tmp_compexpr_left_3;
PyObject *tmp_compexpr_left_4;
PyObject *tmp_compexpr_right_1;
PyObject *tmp_compexpr_right_2;
PyObject *tmp_compexpr_right_3;
PyObject *tmp_compexpr_right_4;
int tmp_cond_truth_1;
int tmp_cond_truth_2;
int tmp_cond_truth_3;
int tmp_cond_truth_4;
int tmp_cond_truth_5;
PyObject *tmp_cond_value_1;
PyObject *tmp_cond_value_2;
PyObject *tmp_cond_value_3;
PyObject *tmp_cond_value_4;
PyObject *tmp_cond_value_5;
PyObject *tmp_delsubscr_subscript_1;
PyObject *tmp_delsubscr_target_1;
PyObject *tmp_frame_locals;
PyObject *tmp_iter_arg_1;
PyObject *tmp_iter_arg_2;
PyObject *tmp_iter_arg_3;
PyObject *tmp_iter_arg_4;
PyObject *tmp_iterator_attempt_1;
PyObject *tmp_iterator_attempt_2;
PyObject *tmp_iterator_attempt_3;
PyObject *tmp_iterator_name_1;
PyObject *tmp_iterator_name_2;
PyObject *tmp_iterator_name_3;
PyObject *tmp_list_arg_1;
PyObject *tmp_make_exception_arg_1;
PyObject *tmp_next_source_1;
PyObject *tmp_raise_type_1;
bool tmp_result;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
int tmp_tried_lineno_1;
int tmp_tried_lineno_2;
int tmp_tried_lineno_3;
int tmp_tried_lineno_4;
int tmp_tried_lineno_5;
int tmp_tried_lineno_6;
PyObject *tmp_tuple_element_1;
PyObject *tmp_unpack_1;
PyObject *tmp_unpack_2;
PyObject *tmp_unpack_3;
PyObject *tmp_unpack_4;
PyObject *tmp_unpack_5;
PyObject *tmp_unpack_6;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_d431774087130e29839d3a5b6ea640f5, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_called_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isshape );
if (unlikely( tmp_called_1 == NULL ))
{
tmp_called_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_isshape );
}
if ( tmp_called_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260501 ], 36, 0 );
exception_tb = NULL;
frame_function->f_lineno = 482;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = par_shape.object;
if ( tmp_call_arg_element_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5018 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 482;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 482;
tmp_cond_value_1 = CALL_FUNCTION_WITH_ARGS1( tmp_called_1, tmp_call_arg_element_1 );
if ( tmp_cond_value_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 482;
goto frame_exception_exit_1;
}
tmp_cond_truth_1 = CHECK_IF_TRUE( tmp_cond_value_1 );
if ( tmp_cond_truth_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_1 );
frame_function->f_lineno = 482;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_cond_value_1 );
if (tmp_cond_truth_1 == 1)
{
goto branch_no_1;
}
else
{
goto branch_yes_1;
}
branch_yes_1:;
tmp_make_exception_arg_1 = const_str_digest_1cc712602c4e531ef469466b008f302b;
frame_function->f_lineno = 483;
tmp_raise_type_1 = CALL_FUNCTION_WITH_ARGS1( PyExc_TypeError, tmp_make_exception_arg_1 );
if ( tmp_raise_type_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 483;
goto frame_exception_exit_1;
}
exception_type = tmp_raise_type_1;
frame_function->f_lineno = 483;
RAISE_EXCEPTION_WITH_TYPE( &exception_type, &exception_value, &exception_tb );
goto frame_exception_exit_1;
branch_no_1:;
// Tried code
tmp_iter_arg_1 = par_shape.object;
if ( tmp_iter_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5018 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 485;
goto try_finally_handler_1;
}
tmp_assign_source_1 = MAKE_ITERATOR( tmp_iter_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 485;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__source_iter.object == NULL );
tmp_tuple_unpack_1__source_iter.object = tmp_assign_source_1;
tmp_unpack_1 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_2 = UNPACK_PARAMETER_NEXT( tmp_unpack_1, 0 );
if ( tmp_assign_source_2 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 485;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_1.object == NULL );
tmp_tuple_unpack_1__element_1.object = tmp_assign_source_2;
tmp_unpack_2 = tmp_tuple_unpack_1__source_iter.object;
tmp_assign_source_3 = UNPACK_PARAMETER_NEXT( tmp_unpack_2, 1 );
if ( tmp_assign_source_3 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 485;
goto try_finally_handler_1;
}
assert( tmp_tuple_unpack_1__element_2.object == NULL );
tmp_tuple_unpack_1__element_2.object = tmp_assign_source_3;
tmp_iterator_name_1 = tmp_tuple_unpack_1__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_1 ); assert( PyIter_Check( tmp_iterator_name_1 ) );
tmp_iterator_attempt_1 = (*Py_TYPE( tmp_iterator_name_1 )->tp_iternext)( tmp_iterator_name_1 );
if (likely( tmp_iterator_attempt_1 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_1 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_1;
}
tmp_assign_source_4 = tmp_tuple_unpack_1__element_1.object;
assert( var_newM.object == NULL );
var_newM.object = INCREASE_REFCOUNT( tmp_assign_source_4 );
tmp_assign_source_5 = tmp_tuple_unpack_1__element_2.object;
assert( var_newN.object == NULL );
var_newN.object = INCREASE_REFCOUNT( tmp_assign_source_5 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_1__source_iter.object );
tmp_tuple_unpack_1__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_1.object );
tmp_tuple_unpack_1__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_1__element_2.object );
tmp_tuple_unpack_1__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
// Tried code
tmp_source_name_1 = par_self.object;
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 486;
goto try_finally_handler_2;
}
tmp_iter_arg_2 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_shape );
if ( tmp_iter_arg_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 486;
goto try_finally_handler_2;
}
tmp_assign_source_6 = MAKE_ITERATOR( tmp_iter_arg_2 );
Py_DECREF( tmp_iter_arg_2 );
if ( tmp_assign_source_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 486;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__source_iter.object == NULL );
tmp_tuple_unpack_2__source_iter.object = tmp_assign_source_6;
tmp_unpack_3 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_7 = UNPACK_PARAMETER_NEXT( tmp_unpack_3, 0 );
if ( tmp_assign_source_7 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 486;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__element_1.object == NULL );
tmp_tuple_unpack_2__element_1.object = tmp_assign_source_7;
tmp_unpack_4 = tmp_tuple_unpack_2__source_iter.object;
tmp_assign_source_8 = UNPACK_PARAMETER_NEXT( tmp_unpack_4, 1 );
if ( tmp_assign_source_8 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 486;
goto try_finally_handler_2;
}
assert( tmp_tuple_unpack_2__element_2.object == NULL );
tmp_tuple_unpack_2__element_2.object = tmp_assign_source_8;
tmp_iterator_name_2 = tmp_tuple_unpack_2__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_2 ); assert( PyIter_Check( tmp_iterator_name_2 ) );
tmp_iterator_attempt_2 = (*Py_TYPE( tmp_iterator_name_2 )->tp_iternext)( tmp_iterator_name_2 );
if (likely( tmp_iterator_attempt_2 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_2 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_2;
}
tmp_assign_source_9 = tmp_tuple_unpack_2__element_1.object;
assert( var_M.object == NULL );
var_M.object = INCREASE_REFCOUNT( tmp_assign_source_9 );
tmp_assign_source_10 = tmp_tuple_unpack_2__element_2.object;
assert( var_N.object == NULL );
var_N.object = INCREASE_REFCOUNT( tmp_assign_source_10 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_2:;
exception_keeper_type_2 = exception_type;
exception_keeper_value_2 = exception_value;
exception_keeper_tb_2 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_2 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_2__source_iter.object );
tmp_tuple_unpack_2__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_1.object );
tmp_tuple_unpack_2__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_2__element_2.object );
tmp_tuple_unpack_2__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_2;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_2 != NULL )
{
exception_type = exception_keeper_type_2;
exception_value = exception_keeper_value_2;
exception_tb = exception_keeper_tb_2;
goto frame_exception_exit_1;
}
goto finally_end_2;
finally_end_2:;
// Tried code
tmp_cond_value_2 = NULL;
// Tried code
tmp_compexpr_left_1 = var_newM.object;
if ( tmp_compexpr_left_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267832 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 487;
goto try_finally_handler_4;
}
tmp_compexpr_right_1 = var_M.object;
if ( tmp_compexpr_right_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 166663 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 487;
goto try_finally_handler_4;
}
tmp_assign_source_11 = RICH_COMPARE_LT( tmp_compexpr_left_1, tmp_compexpr_right_1 );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 487;
goto try_finally_handler_4;
}
assert( tmp_or_1__value_1.object == NULL );
tmp_or_1__value_1.object = tmp_assign_source_11;
tmp_cond_value_3 = tmp_or_1__value_1.object;
tmp_cond_truth_3 = CHECK_IF_TRUE( tmp_cond_value_3 );
if ( tmp_cond_truth_3 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 487;
goto try_finally_handler_4;
}
if (tmp_cond_truth_3 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_cond_value_2 = tmp_or_1__value_1.object;
Py_INCREF( tmp_cond_value_2 );
goto condexpr_end_1;
condexpr_false_1:;
tmp_cond_value_2 = NULL;
// Tried code
tmp_result = tmp_or_1__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_2 = var_newN.object;
if ( tmp_compexpr_left_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267882 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 487;
goto try_finally_handler_5;
}
tmp_compexpr_right_2 = var_N.object;
if ( tmp_compexpr_right_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 71377 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 487;
goto try_finally_handler_5;
}
tmp_cond_value_2 = RICH_COMPARE_LT( tmp_compexpr_left_2, tmp_compexpr_right_2 );
if ( tmp_cond_value_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 487;
goto try_finally_handler_5;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_5:;
exception_keeper_type_3 = exception_type;
exception_keeper_value_3 = exception_value;
exception_keeper_tb_3 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_3 != NULL )
{
exception_type = exception_keeper_type_3;
exception_value = exception_keeper_value_3;
exception_tb = exception_keeper_tb_3;
goto try_finally_handler_4;
}
goto finally_end_3;
finally_end_3:;
condexpr_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_4:;
exception_keeper_type_4 = exception_type;
exception_keeper_value_4 = exception_value;
exception_keeper_tb_4 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_4 != NULL )
{
exception_type = exception_keeper_type_4;
exception_value = exception_keeper_value_4;
exception_tb = exception_keeper_tb_4;
goto try_finally_handler_3;
}
goto finally_end_4;
finally_end_4:;
tmp_cond_truth_2 = CHECK_IF_TRUE( tmp_cond_value_2 );
if ( tmp_cond_truth_2 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_2 );
frame_function->f_lineno = 487;
goto try_finally_handler_3;
}
Py_DECREF( tmp_cond_value_2 );
if (tmp_cond_truth_2 == 1)
{
goto branch_yes_2;
}
else
{
goto branch_no_2;
}
branch_yes_2:;
tmp_source_name_2 = par_self.object;
if ( tmp_source_name_2 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 489;
goto try_finally_handler_3;
}
tmp_called_2 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_keys );
if ( tmp_called_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_3;
}
frame_function->f_lineno = 489;
tmp_list_arg_1 = CALL_FUNCTION_NO_ARGS( tmp_called_2 );
Py_DECREF( tmp_called_2 );
if ( tmp_list_arg_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_3;
}
tmp_iter_arg_3 = PySequence_List( tmp_list_arg_1 );
Py_DECREF( tmp_list_arg_1 );
if ( tmp_iter_arg_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_3;
}
tmp_assign_source_12 = MAKE_ITERATOR( tmp_iter_arg_3 );
Py_DECREF( tmp_iter_arg_3 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_3;
}
assert( tmp_for_loop_1__for_iterator.object == NULL );
tmp_for_loop_1__for_iterator.object = tmp_assign_source_12;
// Tried code
loop_start_1:;
tmp_next_source_1 = tmp_for_loop_1__for_iterator.object;
tmp_assign_source_13 = ITERATOR_NEXT( tmp_next_source_1 );
if (tmp_assign_source_13 == NULL)
{
if ( !ERROR_OCCURED() || HAS_STOP_ITERATION_OCCURED() )
{
goto loop_end_1;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_6;
}
}
if (tmp_for_loop_1__iter_value.object == NULL)
{
tmp_for_loop_1__iter_value.object = tmp_assign_source_13;
}
else
{
PyObject *old = tmp_for_loop_1__iter_value.object;
tmp_for_loop_1__iter_value.object = tmp_assign_source_13;
Py_DECREF( old );
}
// Tried code
tmp_iter_arg_4 = tmp_for_loop_1__iter_value.object;
tmp_assign_source_14 = MAKE_ITERATOR( tmp_iter_arg_4 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_7;
}
if (tmp_tuple_unpack_3__source_iter.object == NULL)
{
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_14;
}
else
{
PyObject *old = tmp_tuple_unpack_3__source_iter.object;
tmp_tuple_unpack_3__source_iter.object = tmp_assign_source_14;
Py_DECREF( old );
}
tmp_unpack_5 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_15 = UNPACK_PARAMETER_NEXT( tmp_unpack_5, 0 );
if ( tmp_assign_source_15 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 489;
goto try_finally_handler_7;
}
if (tmp_tuple_unpack_3__element_1.object == NULL)
{
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_15;
}
else
{
PyObject *old = tmp_tuple_unpack_3__element_1.object;
tmp_tuple_unpack_3__element_1.object = tmp_assign_source_15;
Py_DECREF( old );
}
tmp_unpack_6 = tmp_tuple_unpack_3__source_iter.object;
tmp_assign_source_16 = UNPACK_PARAMETER_NEXT( tmp_unpack_6, 1 );
if ( tmp_assign_source_16 == NULL )
{
if ( !ERROR_OCCURED() )
{
exception_type = INCREASE_REFCOUNT( PyExc_StopIteration );
exception_value = NULL;
exception_tb = NULL;
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
}
frame_function->f_lineno = 489;
goto try_finally_handler_7;
}
if (tmp_tuple_unpack_3__element_2.object == NULL)
{
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_16;
}
else
{
PyObject *old = tmp_tuple_unpack_3__element_2.object;
tmp_tuple_unpack_3__element_2.object = tmp_assign_source_16;
Py_DECREF( old );
}
tmp_iterator_name_3 = tmp_tuple_unpack_3__source_iter.object;
// Check if iterator has left-over elements.
assertObject( tmp_iterator_name_3 ); assert( PyIter_Check( tmp_iterator_name_3 ) );
tmp_iterator_attempt_3 = (*Py_TYPE( tmp_iterator_name_3 )->tp_iternext)( tmp_iterator_name_3 );
if (likely( tmp_iterator_attempt_3 == NULL ))
{
// TODO: Could first fetch, then check, should be faster.
if ( !ERROR_OCCURED() )
{
}
else if ( PyErr_ExceptionMatches( PyExc_StopIteration ))
{
PyErr_Clear();
}
else
{
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_7;
}
}
else
{
Py_DECREF( tmp_iterator_attempt_3 );
// TODO: Could avoid PyErr_Format.
#if PYTHON_VERSION < 300
PyErr_Format( PyExc_ValueError, "too many values to unpack" );
#else
PyErr_Format( PyExc_ValueError, "too many values to unpack (expected 2)" );
#endif
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
goto try_finally_handler_7;
}
tmp_assign_source_17 = tmp_tuple_unpack_3__element_1.object;
if (var_i.object == NULL)
{
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
}
else
{
PyObject *old = var_i.object;
var_i.object = INCREASE_REFCOUNT( tmp_assign_source_17 );
Py_DECREF( old );
}
tmp_assign_source_18 = tmp_tuple_unpack_3__element_2.object;
if (var_j.object == NULL)
{
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_18 );
}
else
{
PyObject *old = var_j.object;
var_j.object = INCREASE_REFCOUNT( tmp_assign_source_18 );
Py_DECREF( old );
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_7:;
exception_keeper_type_5 = exception_type;
exception_keeper_value_5 = exception_value;
exception_keeper_tb_5 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_3 = frame_function->f_lineno;
Py_XDECREF( tmp_tuple_unpack_3__source_iter.object );
tmp_tuple_unpack_3__source_iter.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_1.object );
tmp_tuple_unpack_3__element_1.object = NULL;
Py_XDECREF( tmp_tuple_unpack_3__element_2.object );
tmp_tuple_unpack_3__element_2.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_3;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_5 != NULL )
{
exception_type = exception_keeper_type_5;
exception_value = exception_keeper_value_5;
exception_tb = exception_keeper_tb_5;
goto try_finally_handler_6;
}
goto finally_end_5;
finally_end_5:;
// Tried code
tmp_cond_value_4 = NULL;
// Tried code
tmp_compexpr_left_3 = var_i.object;
if ( tmp_compexpr_left_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 490;
goto try_finally_handler_9;
}
tmp_compexpr_right_3 = var_newM.object;
if ( tmp_compexpr_right_3 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267832 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 490;
goto try_finally_handler_9;
}
tmp_assign_source_19 = RICH_COMPARE_GE( tmp_compexpr_left_3, tmp_compexpr_right_3 );
if ( tmp_assign_source_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 490;
goto try_finally_handler_9;
}
if (tmp_or_2__value_1.object == NULL)
{
tmp_or_2__value_1.object = tmp_assign_source_19;
}
else
{
PyObject *old = tmp_or_2__value_1.object;
tmp_or_2__value_1.object = tmp_assign_source_19;
Py_DECREF( old );
}
tmp_cond_value_5 = tmp_or_2__value_1.object;
tmp_cond_truth_5 = CHECK_IF_TRUE( tmp_cond_value_5 );
if ( tmp_cond_truth_5 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 490;
goto try_finally_handler_9;
}
if (tmp_cond_truth_5 == 1)
{
goto condexpr_true_2;
}
else
{
goto condexpr_false_2;
}
condexpr_true_2:;
tmp_cond_value_4 = tmp_or_2__value_1.object;
Py_INCREF( tmp_cond_value_4 );
goto condexpr_end_2;
condexpr_false_2:;
tmp_cond_value_4 = NULL;
// Tried code
tmp_result = tmp_or_2__value_1.object != NULL;
if ( tmp_result == true )
{
Py_DECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
}
assert( tmp_result != false );
tmp_compexpr_left_4 = var_j.object;
if ( tmp_compexpr_left_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 490;
goto try_finally_handler_10;
}
tmp_compexpr_right_4 = var_newN.object;
if ( tmp_compexpr_right_4 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267882 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 490;
goto try_finally_handler_10;
}
tmp_cond_value_4 = RICH_COMPARE_GE( tmp_compexpr_left_4, tmp_compexpr_right_4 );
if ( tmp_cond_value_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 490;
goto try_finally_handler_10;
}
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_10:;
exception_keeper_type_6 = exception_type;
exception_keeper_value_6 = exception_value;
exception_keeper_tb_6 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_6 != NULL )
{
exception_type = exception_keeper_type_6;
exception_value = exception_keeper_value_6;
exception_tb = exception_keeper_tb_6;
goto try_finally_handler_9;
}
goto finally_end_6;
finally_end_6:;
condexpr_end_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_9:;
exception_keeper_type_7 = exception_type;
exception_keeper_value_7 = exception_value;
exception_keeper_tb_7 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_7 != NULL )
{
exception_type = exception_keeper_type_7;
exception_value = exception_keeper_value_7;
exception_tb = exception_keeper_tb_7;
goto try_finally_handler_8;
}
goto finally_end_7;
finally_end_7:;
tmp_cond_truth_4 = CHECK_IF_TRUE( tmp_cond_value_4 );
if ( tmp_cond_truth_4 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_cond_value_4 );
frame_function->f_lineno = 490;
goto try_finally_handler_8;
}
Py_DECREF( tmp_cond_value_4 );
if (tmp_cond_truth_4 == 1)
{
goto branch_yes_3;
}
else
{
goto branch_no_3;
}
branch_yes_3:;
tmp_delsubscr_target_1 = par_self.object;
if ( tmp_delsubscr_target_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 491;
goto try_finally_handler_8;
}
tmp_delsubscr_subscript_1 = PyTuple_New( 2 );
tmp_tuple_element_1 = var_i.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_delsubscr_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 2029 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 491;
goto try_finally_handler_8;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_delsubscr_subscript_1, 0, tmp_tuple_element_1 );
tmp_tuple_element_1 = var_j.object;
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_delsubscr_subscript_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 54692 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 491;
goto try_finally_handler_8;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_delsubscr_subscript_1, 1, tmp_tuple_element_1 );
tmp_result = DEL_SUBSCRIPT( tmp_delsubscr_target_1, tmp_delsubscr_subscript_1 );
Py_DECREF( tmp_delsubscr_subscript_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 491;
goto try_finally_handler_8;
}
branch_no_3:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_8:;
exception_keeper_type_8 = exception_type;
exception_keeper_value_8 = exception_value;
exception_keeper_tb_8 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_4 = frame_function->f_lineno;
Py_XDECREF( tmp_or_2__value_1.object );
tmp_or_2__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_4;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_8 != NULL )
{
exception_type = exception_keeper_type_8;
exception_value = exception_keeper_value_8;
exception_tb = exception_keeper_tb_8;
goto try_finally_handler_6;
}
goto finally_end_8;
finally_end_8:;
if ( CONSIDER_THREADING() == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 489;
goto try_finally_handler_6;
}
goto loop_start_1;
loop_end_1:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_6:;
exception_keeper_type_9 = exception_type;
exception_keeper_value_9 = exception_value;
exception_keeper_tb_9 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_5 = frame_function->f_lineno;
Py_XDECREF( tmp_for_loop_1__iter_value.object );
tmp_for_loop_1__iter_value.object = NULL;
Py_XDECREF( tmp_for_loop_1__for_iterator.object );
tmp_for_loop_1__for_iterator.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_5;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_9 != NULL )
{
exception_type = exception_keeper_type_9;
exception_value = exception_keeper_value_9;
exception_tb = exception_keeper_tb_9;
goto try_finally_handler_3;
}
goto finally_end_9;
finally_end_9:;
branch_no_2:;
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_3:;
exception_keeper_type_10 = exception_type;
exception_keeper_value_10 = exception_value;
exception_keeper_tb_10 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_6 = frame_function->f_lineno;
Py_XDECREF( tmp_or_1__value_1.object );
tmp_or_1__value_1.object = NULL;
frame_function->f_lineno = tmp_tried_lineno_6;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_10 != NULL )
{
exception_type = exception_keeper_type_10;
exception_value = exception_keeper_value_10;
exception_tb = exception_keeper_tb_10;
goto frame_exception_exit_1;
}
goto finally_end_10;
finally_end_10:;
tmp_assattr_name_1 = par_shape.object;
if ( tmp_assattr_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 5018 ], 51, 0 );
exception_tb = NULL;
frame_function->f_lineno = 492;
goto frame_exception_exit_1;
}
tmp_assattr_target_1 = par_self.object;
if ( tmp_assattr_target_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 50 ], 50, 0 );
exception_tb = NULL;
frame_function->f_lineno = 492;
goto frame_exception_exit_1;
}
tmp_result = SET_ATTRIBUTE( tmp_assattr_target_1, const_str_plain__shape, tmp_assattr_name_1 );
if ( tmp_result == false )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 492;
goto frame_exception_exit_1;
}
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((var_newM.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_newM,
var_newM.object
);
}
if ((var_newN.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_newN,
var_newN.object
);
}
if ((var_M.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_M,
var_M.object
);
}
if ((var_N.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_N,
var_N.object
);
}
if ((var_i.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_i,
var_i.object
);
}
if ((var_j.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_j,
var_j.object
);
}
if ((par_self.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_self,
par_self.object
);
}
if ((par_shape.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_shape,
par_shape.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
tmp_return_value = Py_None;
Py_INCREF( tmp_return_value );
goto function_return_exit;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_self = NULL;
PyObject *_python_par_shape = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "resize() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_self == key )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && const_str_plain_shape == key )
{
assert( _python_par_shape == NULL );
_python_par_shape = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_self, key ) == 1 )
{
assert( _python_par_self == NULL );
_python_par_self = value;
found = true;
kw_found += 1;
}
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_shape, key ) == 1 )
{
assert( _python_par_shape == NULL );
_python_par_shape = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"resize() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 2 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_self != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_self = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_self == NULL )
{
if ( 0 + self->m_defaults_given >= 2 )
{
_python_par_self = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
if (likely( 1 < args_given ))
{
if (unlikely( _python_par_shape != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 1 );
goto error_exit;
}
_python_par_shape = INCREASE_REFCOUNT( args[ 1 ] );
}
else if ( _python_par_shape == NULL )
{
if ( 1 + self->m_defaults_given >= 2 )
{
_python_par_shape = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 1 - 2 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_self == NULL || _python_par_shape == NULL ))
{
PyObject *values[] = { _python_par_self, _python_par_shape };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, _python_par_self, _python_par_shape );
error_exit:;
Py_XDECREF( _python_par_self );
Py_XDECREF( _python_par_shape );
return NULL;
}
static PyObject *dparse_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 2 )
{
return impl_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ), INCREASE_REFCOUNT( args[ 1 ] ) );
}
else
{
PyObject *result = fparse_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_3__list_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_x )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_x; par_x.object = _python_par_x;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_assign_source_1;
PyObject *tmp_frame_locals;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_inst_1;
PyObject *tmp_list_arg_1;
int tmp_res;
PyObject *tmp_return_value;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_b3446483daf7b94985525685fb65b5d1, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_isinstance_inst_1 = par_x.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 497;
goto frame_exception_exit_1;
}
tmp_isinstance_cls_1 = LOOKUP_BUILTIN( const_str_plain_list );
if ( tmp_isinstance_cls_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 497;
goto frame_exception_exit_1;
}
tmp_res = Nuitka_IsInstance( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_res == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 497;
goto frame_exception_exit_1;
}
if (tmp_res == 1)
{
goto branch_no_1;
}
else
{
goto branch_yes_1;
}
branch_yes_1:;
tmp_list_arg_1 = par_x.object;
if ( tmp_list_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 498;
goto frame_exception_exit_1;
}
tmp_assign_source_1 = PySequence_List( tmp_list_arg_1 );
if ( tmp_assign_source_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 498;
goto frame_exception_exit_1;
}
if (par_x.object == NULL)
{
par_x.object = tmp_assign_source_1;
}
else
{
PyObject *old = par_x.object;
par_x.object = tmp_assign_source_1;
Py_DECREF( old );
}
branch_no_1:;
tmp_return_value = par_x.object;
if ( tmp_return_value == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 499;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_x.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_x,
par_x.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_3__list_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_x = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_list() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_x == key )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_x, key ) == 1 )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_list() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_x != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_x = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_x == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_x = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_x == NULL ))
{
PyObject *values[] = { _python_par_x };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_3__list_of_module_scipy$sparse$dok( self, _python_par_x );
error_exit:;
Py_XDECREF( _python_par_x );
return NULL;
}
static PyObject *dparse_function_3__list_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_3__list_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_3__list_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_x )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_x; par_x.object = _python_par_x;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_frame_locals;
PyObject *tmp_isinstance_cls_1;
PyObject *tmp_isinstance_inst_1;
PyObject *tmp_return_value;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_9377ec7bcf458b9e27121dc1fe5ae8f3, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_isinstance_inst_1 = par_x.object;
if ( tmp_isinstance_inst_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 503;
goto frame_exception_exit_1;
}
tmp_isinstance_cls_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix );
if (unlikely( tmp_isinstance_cls_1 == NULL ))
{
tmp_isinstance_cls_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_dok_matrix );
}
if ( tmp_isinstance_cls_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 267167 ], 39, 0 );
exception_tb = NULL;
frame_function->f_lineno = 503;
goto frame_exception_exit_1;
}
tmp_return_value = BUILTIN_ISINSTANCE( tmp_isinstance_inst_1, tmp_isinstance_cls_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 503;
goto frame_exception_exit_1;
}
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_x.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_x,
par_x.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_x = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "isspmatrix_dok() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_x == key )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_x, key ) == 1 )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"isspmatrix_dok() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_x != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_x = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_x == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_x = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_x == NULL ))
{
PyObject *values[] = { _python_par_x };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( self, _python_par_x );
error_exit:;
Py_XDECREF( _python_par_x );
return NULL;
}
static PyObject *dparse_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *impl_function_5__prod_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject *_python_par_x )
{
// No context is used.
// Local variable declarations.
PyObjectLocalVariable par_x; par_x.object = _python_par_x;
PyObject *exception_type = NULL, *exception_value = NULL;
PyTracebackObject *exception_tb = NULL;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_called_1;
int tmp_cmp_Eq_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_right_1;
PyObject *tmp_frame_locals;
PyObject *tmp_len_arg_1;
PyObject *tmp_return_value;
PyObject *tmp_source_name_1;
PyObject *tmp_source_name_2;
tmp_return_value = NULL;
// Actual function code.
static PyFrameObject *cache_frame_function = NULL;
MAKE_OR_REUSE_FRAME( cache_frame_function, codeobj_7596d40b7dddb052eca82413c884429f, module_scipy$sparse$dok );
PyFrameObject *frame_function = cache_frame_function;
// Push the new frame as the currently active one.
pushFrameStack( frame_function );
// Mark the frame object as in use, ref count 1 will be up for reuse.
Py_INCREF( frame_function );
assert( Py_REFCNT( frame_function ) == 2 ); // Frame stack
#if PYTHON_VERSION >= 340
frame_function->f_executing += 1;
#endif
// Framed code:
tmp_len_arg_1 = par_x.object;
if ( tmp_len_arg_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 508;
goto frame_exception_exit_1;
}
tmp_compare_left_1 = BUILTIN_LEN( tmp_len_arg_1 );
if ( tmp_compare_left_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 508;
goto frame_exception_exit_1;
}
tmp_compare_right_1 = const_int_0;
tmp_cmp_Eq_1 = RICH_COMPARE_BOOL_EQ( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_cmp_Eq_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_compare_left_1 );
frame_function->f_lineno = 508;
goto frame_exception_exit_1;
}
Py_DECREF( tmp_compare_left_1 );
if (tmp_cmp_Eq_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_return_value = const_int_pos_1;
Py_INCREF( tmp_return_value );
goto frame_return_exit_1;
branch_no_1:;
tmp_source_name_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_functools );
if (unlikely( tmp_source_name_1 == NULL ))
{
tmp_source_name_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_functools );
}
if ( tmp_source_name_1 == NULL )
{
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 223592 ], 38, 0 );
exception_tb = NULL;
frame_function->f_lineno = 510;
goto frame_exception_exit_1;
}
tmp_called_1 = LOOKUP_ATTRIBUTE( tmp_source_name_1, const_str_plain_reduce );
if ( tmp_called_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 510;
goto frame_exception_exit_1;
}
tmp_source_name_2 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_operator );
if (unlikely( tmp_source_name_2 == NULL ))
{
tmp_source_name_2 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_operator );
}
if ( tmp_source_name_2 == NULL )
{
Py_DECREF( tmp_called_1 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 216215 ], 37, 0 );
exception_tb = NULL;
frame_function->f_lineno = 510;
goto frame_exception_exit_1;
}
tmp_call_arg_element_1 = LOOKUP_ATTRIBUTE( tmp_source_name_2, const_str_plain_mul );
if ( tmp_call_arg_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_called_1 );
frame_function->f_lineno = 510;
goto frame_exception_exit_1;
}
tmp_call_arg_element_2 = par_x.object;
if ( tmp_call_arg_element_2 == NULL )
{
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_arg_element_1 );
exception_type = INCREASE_REFCOUNT( PyExc_UnboundLocalError );
exception_value = UNSTREAM_STRING( &constant_bin[ 1605 ], 47, 0 );
exception_tb = NULL;
frame_function->f_lineno = 510;
goto frame_exception_exit_1;
}
frame_function->f_lineno = 510;
tmp_return_value = CALL_FUNCTION_WITH_ARGS2( tmp_called_1, tmp_call_arg_element_1, tmp_call_arg_element_2 );
Py_DECREF( tmp_called_1 );
Py_DECREF( tmp_call_arg_element_1 );
if ( tmp_return_value == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_function->f_lineno = 510;
goto frame_exception_exit_1;
}
goto frame_return_exit_1;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto frame_no_exception_1;
frame_return_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
goto function_return_exit;
frame_exception_exit_1:;
#if 0
RESTORE_FRAME_EXCEPTION( frame_function );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
}
else if ( exception_tb->tb_frame != frame_function )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_function ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
tmp_frame_locals = PyDict_New();
if ((par_x.object != NULL))
{
PyDict_SetItem(
tmp_frame_locals,
const_str_plain_x,
par_x.object
);
}
detachFrame( exception_tb, tmp_frame_locals );
popFrameStack();
#if PYTHON_VERSION >= 340
frame_function->f_executing -= 1;
#endif
Py_DECREF( frame_function );
// Return the error.
goto function_exception_exit;
frame_no_exception_1:;
// Return statement must be present.
assert(false);
function_exception_exit:
assert( exception_type );
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return NULL;
function_return_exit:
return tmp_return_value;
}
static PyObject *fparse_function_5__prod_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, Py_ssize_t args_size, PyObject *kw )
{
assert( kw == NULL || PyDict_Check( kw ) );
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_size = kw ? PyDict_Size( kw ) : 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_found = 0;
NUITKA_MAY_BE_UNUSED Py_ssize_t kw_only_found = 0;
Py_ssize_t args_given = args_size;
PyObject *_python_par_x = NULL;
// Copy given dictionary values to the the respective variables:
if ( kw_size > 0 )
{
Py_ssize_t ppos = 0;
PyObject *key, *value;
while( PyDict_Next( kw, &ppos, &key, &value ) )
{
#if PYTHON_VERSION < 300
if (unlikely( !PyString_Check( key ) && !PyUnicode_Check( key ) ))
#else
if (unlikely( !PyUnicode_Check( key ) ))
#endif
{
PyErr_Format( PyExc_TypeError, "_prod() keywords must be strings" );
goto error_exit;
}
NUITKA_MAY_BE_UNUSED bool found = false;
Py_INCREF( key );
Py_INCREF( value );
// Quick path, could be our value.
if ( found == false && const_str_plain_x == key )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
// Slow path, compare against all parameter names.
if ( found == false && RICH_COMPARE_BOOL_EQ( const_str_plain_x, key ) == 1 )
{
assert( _python_par_x == NULL );
_python_par_x = value;
found = true;
kw_found += 1;
}
Py_DECREF( key );
if ( found == false )
{
Py_DECREF( value );
PyErr_Format(
PyExc_TypeError,
"_prod() got an unexpected keyword argument '%s'",
Nuitka_String_Check( key ) ? Nuitka_String_AsString( key ) : "<non-string>"
);
goto error_exit;
}
}
#if PYTHON_VERSION < 300
assert( kw_found == kw_size );
assert( kw_only_found == 0 );
#endif
}
// Check if too many arguments were given in case of non star args
if (unlikely( args_given > 1 ))
{
#if PYTHON_VERSION < 270
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_size );
#elif PYTHON_VERSION < 330
ERROR_TOO_MANY_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_MANY_ARGUMENTS( self, args_given, kw_only_found );
#endif
goto error_exit;
}
// Copy normal parameter values given as part of the args list to the respective variables:
if (likely( 0 < args_given ))
{
if (unlikely( _python_par_x != NULL ))
{
ERROR_MULTIPLE_VALUES( self, 0 );
goto error_exit;
}
_python_par_x = INCREASE_REFCOUNT( args[ 0 ] );
}
else if ( _python_par_x == NULL )
{
if ( 0 + self->m_defaults_given >= 1 )
{
_python_par_x = INCREASE_REFCOUNT( PyTuple_GET_ITEM( self->m_defaults, self->m_defaults_given + 0 - 1 ) );
}
#if PYTHON_VERSION < 330
else
{
#if PYTHON_VERSION < 270
ERROR_TOO_FEW_ARGUMENTS( self, kw_size, args_given + kw_found );
#elif PYTHON_VERSION < 300
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found );
#else
ERROR_TOO_FEW_ARGUMENTS( self, args_given + kw_found - kw_only_found );
#endif
goto error_exit;
}
#endif
}
#if PYTHON_VERSION >= 330
if (unlikely( _python_par_x == NULL ))
{
PyObject *values[] = { _python_par_x };
ERROR_TOO_FEW_ARGUMENTS( self, values );
goto error_exit;
}
#endif
return impl_function_5__prod_of_module_scipy$sparse$dok( self, _python_par_x );
error_exit:;
Py_XDECREF( _python_par_x );
return NULL;
}
static PyObject *dparse_function_5__prod_of_module_scipy$sparse$dok( Nuitka_FunctionObject *self, PyObject **args, int size )
{
if ( size == 1 )
{
return impl_function_5__prod_of_module_scipy$sparse$dok( self, INCREASE_REFCOUNT( args[ 0 ] ) );
}
else
{
PyObject *result = fparse_function_5__prod_of_module_scipy$sparse$dok( self, args, size, NULL );
return result;
}
}
static PyObject *MAKE_FUNCTION_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_10___neg___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___neg__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_afcfe2c037793a08eef4cb198c8e2c3b,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_11__mul_scalar_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain__mul_scalar,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_da334463ae7331b49e75bf8b27b1093a,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_12__mul_vector_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain__mul_vector,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_d0c208eb65a49be7b318b20965a57c24,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_13__mul_multivector_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain__mul_multivector,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_85f9f4dcc8ba23f158319064deb2cfbc,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_14___imul___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___imul__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_b3f9bf44c07763aeab49c3309fef219c,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_15___truediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___truediv__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_f157eec77b38a023b68511a1a036dc92,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_16___itruediv___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___itruediv__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_6d646029574dfc3c48b55d933a454b63,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_17_transpose_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_transpose,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_354d16e2eb9fd92b3a4a39018cfe374a,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_6fd6fa67cd030b9bcc30d553e373e35a
);
return result;
}
static PyObject *MAKE_FUNCTION_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_18_conjtransp_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_conjtransp,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_3c4f03c717179172b570db43de816852,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_095b379f2fe032d45bd08c20dba00a80
);
return result;
}
static PyObject *MAKE_FUNCTION_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_19_copy_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_copy,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_73e984201e3f4d06ad4f414c492b6346,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults )
{
PyObject *result = Nuitka_Function_New(
fparse_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_1___init___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___init__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_317b5d54d014855b79d57d9950099570,
defaults,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_1__is_sequence_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_1__is_sequence_of_module_scipy$sparse$dok,
dparse_function_1__is_sequence_of_module_scipy$sparse$dok,
const_str_plain__is_sequence,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_788633ca8ecf7ae6b92dade6ba384192,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_20_getrow_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_getrow,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_666ca47b25fbb57775d31c9e6e3f02cd,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_8daa1b713175887570e8bd759f8cc7ea
);
return result;
}
static PyObject *MAKE_FUNCTION_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_21_getcol_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_getcol,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_6b166c07b1f8c4ec8359fbea53d55f26,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_600afd5079f4c54e3a802d9aae84e5bd
);
return result;
}
static PyObject *MAKE_FUNCTION_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_22_tocoo_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_tocoo,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_deba1363caa37e177e267f68fa498919,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_5b6160903d6e3a07a84cde4c8dea8620
);
return result;
}
static PyObject *MAKE_FUNCTION_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults )
{
PyObject *result = Nuitka_Function_New(
fparse_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_23_todok_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_todok,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_8748d495ab19dc5a5a054b06e9676bdd,
defaults,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_24_tocsr_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_tocsr,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_39ed14bcef9fbbc1e42c49304224da75,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_aa339f156291899a8f9a9b8fc5d139fe
);
return result;
}
static PyObject *MAKE_FUNCTION_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_25_tocsc_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_tocsc,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_48551c06b9cd28c7e20ae32227aaaccd,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_e356b06c19d5f1d85f5a59e1bb86c8ef
);
return result;
}
static PyObject *MAKE_FUNCTION_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults )
{
PyObject *result = Nuitka_Function_New(
fparse_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_26_toarray_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_toarray,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_a8f80bb4d58dec01408f5b4a066b24eb,
defaults,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_851016fb8f0713619e8e8d97f209004f
);
return result;
}
static PyObject *MAKE_FUNCTION_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_27_resize_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_resize,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_9a6d0cd15e4168f1427e48ca14ee3ae1,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_93582c8c0ba0026bb1184ae87e1be157
);
return result;
}
static PyObject *MAKE_FUNCTION_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_2_getnnz_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_getnnz,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_6019cdbc92007bf9e35e89c516489b4c,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_3___len___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___len__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_2ad7d93d45724e1ac94700f4a03e35f4,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_3__list_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_3__list_of_module_scipy$sparse$dok,
dparse_function_3__list_of_module_scipy$sparse$dok,
const_str_plain__list,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_b3446483daf7b94985525685fb65b5d1,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_755230e39e8e2884718623fa9de40bd5
);
return result;
}
static PyObject *MAKE_FUNCTION_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok( PyObject *defaults )
{
PyObject *result = Nuitka_Function_New(
fparse_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_4_get_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain_get,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_b614563072491fa7b91e7ef4222be204,
defaults,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_86af9e627a151b26bd892c09a86a6b1c
);
return result;
}
static PyObject *MAKE_FUNCTION_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_4_isspmatrix_dok_of_module_scipy$sparse$dok,
dparse_function_4_isspmatrix_dok_of_module_scipy$sparse$dok,
const_str_plain_isspmatrix_dok,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_9377ec7bcf458b9e27121dc1fe5ae8f3,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_5___getitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___getitem__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_ea55212826cd7e228ca59aee410ccf6e,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_6c8ebeb97b8e0a68fb6853eca03934aa
);
return result;
}
static PyObject *MAKE_FUNCTION_function_5__prod_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_5__prod_of_module_scipy$sparse$dok,
dparse_function_5__prod_of_module_scipy$sparse$dok,
const_str_plain__prod,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_7596d40b7dddb052eca82413c884429f,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
const_str_digest_7ed7a51c426bdfe1a016fbb04a89ae46
);
return result;
}
static PyObject *MAKE_FUNCTION_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_6__getitem_ranges_of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain__getitem_ranges,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_a3a6ebb1e23776d878d3f27b4b095f54,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_7___setitem___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___setitem__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_d7447b04e4d4f290e9e5bceb91d3696a,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_8___add___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___add__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_f59b2f8c112dd436d44e809cfb0e0afc,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
static PyObject *MAKE_FUNCTION_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok( )
{
PyObject *result = Nuitka_Function_New(
fparse_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
dparse_function_9___radd___of_class_2_dok_matrix_of_module_scipy$sparse$dok,
const_str_plain___radd__,
#if PYTHON_VERSION >= 330
NULL,
#endif
codeobj_7482b8942712e32cfeb73694be9bd695,
NULL,
#if PYTHON_VERSION >= 300
NULL,
const_dict_empty,
#endif
module_scipy$sparse$dok,
Py_None
);
return result;
}
#if PYTHON_VERSION >= 300
static struct PyModuleDef mdef_scipy$sparse$dok =
{
PyModuleDef_HEAD_INIT,
"scipy.sparse.dok", /* m_name */
NULL, /* m_doc */
-1, /* m_size */
NULL, /* m_methods */
NULL, /* m_reload */
NULL, /* m_traverse */
NULL, /* m_clear */
NULL, /* m_free */
};
#endif
#define _MODULE_UNFREEZER 0
#if _MODULE_UNFREEZER
#include "nuitka/unfreezing.hpp"
// Table for lookup to find "frozen" modules or DLLs, i.e. the ones included in
// or along this binary.
static struct Nuitka_MetaPathBasedLoaderEntry meta_path_loader_entries[] =
{
{ NULL, NULL, 0 }
};
#endif
// The exported interface to CPython. On import of the module, this function
// gets called. It has to have an exact function name, in cases it's a shared
// library export. This is hidden behind the MOD_INIT_DECL.
MOD_INIT_DECL( scipy$sparse$dok )
{
#if defined(_NUITKA_EXE) || PYTHON_VERSION >= 300
static bool _init_done = false;
// Packages can be imported recursively in deep executables.
if ( _init_done )
{
return MOD_RETURN_VALUE( module_scipy$sparse$dok );
}
else
{
_init_done = true;
}
#endif
#ifdef _NUITKA_MODULE
// In case of a stand alone extension module, need to call initialization
// the init here because that's the first and only time we are going to get
// called here.
// Initialize the constant values used.
_initBuiltinModule();
_initConstants();
// Initialize the compiled types of Nuitka.
PyType_Ready( &Nuitka_Generator_Type );
PyType_Ready( &Nuitka_Function_Type );
PyType_Ready( &Nuitka_Method_Type );
PyType_Ready( &Nuitka_Frame_Type );
#if PYTHON_VERSION < 300
initSlotCompare();
#endif
patchBuiltinModule();
patchTypeComparison();
#endif
#if _MODULE_UNFREEZER
registerMetaPathBasedUnfreezer( meta_path_loader_entries );
#endif
_initModuleConstants();
_initModuleCodeObjects();
// puts( "in initscipy$sparse$dok" );
// Create the module object first. There are no methods initially, all are
// added dynamically in actual code only. Also no "__doc__" is initially
// set at this time, as it could not contain NUL characters this way, they
// are instead set in early module code. No "self" for modules, we have no
// use for it.
#if PYTHON_VERSION < 300
module_scipy$sparse$dok = Py_InitModule4(
"scipy.sparse.dok", // Module Name
NULL, // No methods initially, all are added
// dynamically in actual module code only.
NULL, // No __doc__ is initially set, as it could
// not contain NUL this way, added early in
// actual code.
NULL, // No self for modules, we don't use it.
PYTHON_API_VERSION
);
#else
module_scipy$sparse$dok = PyModule_Create( &mdef_scipy$sparse$dok );
#endif
moduledict_scipy$sparse$dok = (PyDictObject *)((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
assertObject( module_scipy$sparse$dok );
// Seems to work for Python2.7 out of the box, but for Python3, the module
// doesn't automatically enter "sys.modules", so do it manually.
#if PYTHON_VERSION >= 300
{
int r = PyObject_SetItem( PySys_GetObject( (char *)"modules" ), const_str_digest_1d6d23d7fe83d06c5414199a84edcf10, module_scipy$sparse$dok );
assert( r != -1 );
}
#endif
// For deep importing of a module we need to have "__builtins__", so we set
// it ourselves in the same way than CPython does. Note: This must be done
// before the frame object is allocated, or else it may fail.
PyObject *module_dict = PyModule_GetDict( module_scipy$sparse$dok );
if ( PyDict_GetItem( module_dict, const_str_plain___builtins__ ) == NULL )
{
PyObject *value = (PyObject *)builtin_module;
// Check if main module, not a dict then.
#if !defined(_NUITKA_EXE) || !0
value = PyModule_GetDict( value );
#endif
#ifndef __NUITKA_NO_ASSERT__
int res =
#endif
PyDict_SetItem( module_dict, const_str_plain___builtins__, value );
assert( res == 0 );
}
#if PYTHON_VERSION >= 330
#if _MODULE_UNFREEZER
PyDict_SetItem( module_dict, const_str_plain___loader__, metapath_based_loader );
#else
PyDict_SetItem( module_dict, const_str_plain___loader__, Py_None );
#endif
#endif
// Temp variables if any
PyObjectTempVariable tmp_class_creation_1__bases;
PyObjectTempVariable tmp_class_creation_1__class_dict;
PyObjectTempVariable tmp_class_creation_1__metaclass;
PyObjectTempVariable tmp_class_creation_1__class;
PyObject *exception_type, *exception_value;
PyTracebackObject *exception_tb;
PyObject *exception_keeper_type_1;
PyObject *exception_keeper_value_1;
PyTracebackObject *exception_keeper_tb_1;
PyObject *tmp_assign_source_1;
PyObject *tmp_assign_source_2;
PyObject *tmp_assign_source_3;
PyObject *tmp_assign_source_4;
PyObject *tmp_assign_source_5;
PyObject *tmp_assign_source_6;
PyObject *tmp_assign_source_7;
PyObject *tmp_assign_source_8;
PyObject *tmp_assign_source_9;
PyObject *tmp_assign_source_10;
PyObject *tmp_assign_source_11;
PyObject *tmp_assign_source_12;
PyObject *tmp_assign_source_13;
PyObject *tmp_assign_source_14;
PyObject *tmp_assign_source_15;
PyObject *tmp_assign_source_16;
PyObject *tmp_assign_source_17;
PyObject *tmp_assign_source_18;
PyObject *tmp_assign_source_19;
PyObject *tmp_assign_source_20;
PyObject *tmp_assign_source_21;
PyObject *tmp_assign_source_22;
PyObject *tmp_assign_source_23;
PyObject *tmp_assign_source_24;
PyObject *tmp_assign_source_25;
PyObject *tmp_assign_source_26;
PyObject *tmp_assign_source_27;
PyObject *tmp_assign_source_28;
PyObject *tmp_assign_source_29;
PyObject *tmp_assign_source_30;
PyObject *tmp_assign_source_31;
PyObject *tmp_assign_source_32;
PyObject *tmp_assign_source_33;
PyObject *tmp_assign_source_34;
PyObject *tmp_call_arg_element_1;
PyObject *tmp_call_arg_element_2;
PyObject *tmp_call_arg_element_3;
PyObject *tmp_called_1;
PyObject *tmp_class_bases_1;
int tmp_cmp_In_1;
PyObject *tmp_compare_left_1;
PyObject *tmp_compare_left_2;
PyObject *tmp_compare_right_1;
PyObject *tmp_compare_right_2;
PyObject *tmp_dget_dict_1;
PyObject *tmp_dget_key_1;
int tmp_exc_match_exception_match_1;
PyObject *tmp_import_globals_1;
PyObject *tmp_import_globals_2;
PyObject *tmp_import_globals_3;
PyObject *tmp_import_globals_4;
PyObject *tmp_import_globals_5;
PyObject *tmp_import_globals_6;
PyObject *tmp_import_globals_7;
PyObject *tmp_import_globals_8;
PyObject *tmp_import_globals_9;
PyObject *tmp_import_globals_10;
PyObject *tmp_import_globals_11;
PyObject *tmp_import_globals_12;
PyObject *tmp_import_globals_13;
PyObject *tmp_import_globals_14;
PyObject *tmp_import_globals_15;
PyObject *tmp_import_globals_16;
PyObject *tmp_import_globals_17;
PyObject *tmp_import_globals_18;
PyObject *tmp_import_globals_19;
PyObject *tmp_import_globals_20;
PyObject *tmp_import_globals_21;
PyObject *tmp_import_name_from_1;
PyObject *tmp_import_name_from_2;
PyObject *tmp_import_name_from_3;
PyObject *tmp_import_name_from_4;
PyObject *tmp_import_name_from_5;
PyObject *tmp_import_name_from_6;
PyObject *tmp_import_name_from_7;
PyObject *tmp_import_name_from_8;
PyObject *tmp_import_name_from_9;
PyObject *tmp_import_name_from_10;
PyObject *tmp_import_name_from_11;
PyObject *tmp_import_name_from_12;
PyObject *tmp_import_name_from_13;
PyObject *tmp_import_name_from_14;
PyObject *tmp_import_name_from_15;
PyObject *tmp_import_name_from_16;
PyObject *tmp_import_name_from_17;
PyObject *tmp_import_name_from_18;
int tmp_tried_lineno_1;
PyObject *tmp_tuple_element_1;
// Module code.
tmp_assign_source_1 = const_str_digest_dc8a053ed62b5b73a48b88f75a7f5bcb;
UPDATE_STRING_DICT0( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain___doc__, tmp_assign_source_1 );
tmp_assign_source_2 = const_str_digest_139214c1a344ec0235eb4f1d99a71a4b;
UPDATE_STRING_DICT0( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain___file__, tmp_assign_source_2 );
// Frame without reuse.
PyFrameObject *frame_module = MAKE_FRAME( codeobj_1d4a7c11cc20ddbec03269294b93d717, module_scipy$sparse$dok );
// Push the new frame as the currently active one, and we should be exlusively
// owning it.
pushFrameStack( frame_module );
assert( Py_REFCNT( frame_module ) == 1 );
#if PYTHON_VERSION >= 340
frame_module->f_executing += 1;
#endif
// Framed code:
tmp_import_globals_1 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 3;
tmp_import_name_from_1 = IMPORT_MODULE( const_str_plain___future__, tmp_import_globals_1, tmp_import_globals_1, const_tuple_bbb623b1e1f1107d9edb2c8c75d36edd_tuple, const_int_0 );
if ( tmp_import_name_from_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 3;
goto frame_exception_exit_1;
}
tmp_assign_source_3 = IMPORT_NAME( tmp_import_name_from_1, const_str_plain_division );
Py_DECREF( tmp_import_name_from_1 );
if ( tmp_assign_source_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 3;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_division, tmp_assign_source_3 );
tmp_import_globals_2 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 3;
tmp_import_name_from_2 = IMPORT_MODULE( const_str_plain___future__, tmp_import_globals_2, tmp_import_globals_2, const_tuple_bbb623b1e1f1107d9edb2c8c75d36edd_tuple, const_int_0 );
if ( tmp_import_name_from_2 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 3;
goto frame_exception_exit_1;
}
tmp_assign_source_4 = IMPORT_NAME( tmp_import_name_from_2, const_str_plain_print_function );
Py_DECREF( tmp_import_name_from_2 );
if ( tmp_assign_source_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 3;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_print_function, tmp_assign_source_4 );
tmp_import_globals_3 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 3;
tmp_import_name_from_3 = IMPORT_MODULE( const_str_plain___future__, tmp_import_globals_3, tmp_import_globals_3, const_tuple_bbb623b1e1f1107d9edb2c8c75d36edd_tuple, const_int_0 );
if ( tmp_import_name_from_3 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 3;
goto frame_exception_exit_1;
}
tmp_assign_source_5 = IMPORT_NAME( tmp_import_name_from_3, const_str_plain_absolute_import );
Py_DECREF( tmp_import_name_from_3 );
if ( tmp_assign_source_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 3;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_absolute_import, tmp_assign_source_5 );
tmp_assign_source_6 = const_str_digest_83a0aac3d618d3c31fc37c156dca406d;
UPDATE_STRING_DICT0( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain___docformat__, tmp_assign_source_6 );
tmp_assign_source_7 = LIST_COPY( const_list_str_plain_dok_matrix_str_plain_isspmatrix_dok_list );
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain___all__, tmp_assign_source_7 );
tmp_import_globals_4 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 9;
tmp_assign_source_8 = IMPORT_MODULE( const_str_plain_functools, tmp_import_globals_4, tmp_import_globals_4, Py_None, const_int_0 );
if ( tmp_assign_source_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 9;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_functools, tmp_assign_source_8 );
tmp_import_globals_5 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 10;
tmp_assign_source_9 = IMPORT_MODULE( const_str_plain_operator, tmp_import_globals_5, tmp_import_globals_5, Py_None, const_int_0 );
if ( tmp_assign_source_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 10;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_operator, tmp_assign_source_9 );
tmp_import_globals_6 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 12;
tmp_assign_source_10 = IMPORT_MODULE( const_str_plain_numpy, tmp_import_globals_6, tmp_import_globals_6, Py_None, const_int_0 );
if ( tmp_assign_source_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 12;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_np, tmp_assign_source_10 );
tmp_import_globals_7 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 14;
tmp_import_name_from_4 = IMPORT_MODULE( const_str_digest_644880ce7dbf6c5f121ce247016ffe23, tmp_import_globals_7, tmp_import_globals_7, const_tuple_str_plain_zip_str_plain_xrange_tuple, const_int_0 );
if ( tmp_import_name_from_4 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 14;
goto frame_exception_exit_1;
}
tmp_assign_source_11 = IMPORT_NAME( tmp_import_name_from_4, const_str_plain_zip );
Py_DECREF( tmp_import_name_from_4 );
if ( tmp_assign_source_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 14;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_izip, tmp_assign_source_11 );
tmp_import_globals_8 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 14;
tmp_import_name_from_5 = IMPORT_MODULE( const_str_digest_644880ce7dbf6c5f121ce247016ffe23, tmp_import_globals_8, tmp_import_globals_8, const_tuple_str_plain_zip_str_plain_xrange_tuple, const_int_0 );
if ( tmp_import_name_from_5 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 14;
goto frame_exception_exit_1;
}
tmp_assign_source_12 = IMPORT_NAME( tmp_import_name_from_5, const_str_plain_xrange );
Py_DECREF( tmp_import_name_from_5 );
if ( tmp_assign_source_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 14;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_xrange, tmp_assign_source_12 );
tmp_import_globals_9 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 15;
tmp_import_name_from_6 = IMPORT_MODULE( const_str_digest_644880ce7dbf6c5f121ce247016ffe23, tmp_import_globals_9, tmp_import_globals_9, const_tuple_str_plain_iteritems_tuple, const_int_0 );
if ( tmp_import_name_from_6 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 15;
goto frame_exception_exit_1;
}
tmp_assign_source_13 = IMPORT_NAME( tmp_import_name_from_6, const_str_plain_iteritems );
Py_DECREF( tmp_import_name_from_6 );
if ( tmp_assign_source_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 15;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_iteritems, tmp_assign_source_13 );
tmp_import_globals_10 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 17;
tmp_import_name_from_7 = IMPORT_MODULE( const_str_plain_base, tmp_import_globals_10, tmp_import_globals_10, const_tuple_str_plain_spmatrix_str_plain_isspmatrix_tuple, const_int_pos_1 );
if ( tmp_import_name_from_7 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 17;
goto frame_exception_exit_1;
}
tmp_assign_source_14 = IMPORT_NAME( tmp_import_name_from_7, const_str_plain_spmatrix );
Py_DECREF( tmp_import_name_from_7 );
if ( tmp_assign_source_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 17;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_spmatrix, tmp_assign_source_14 );
tmp_import_globals_11 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 17;
tmp_import_name_from_8 = IMPORT_MODULE( const_str_plain_base, tmp_import_globals_11, tmp_import_globals_11, const_tuple_str_plain_spmatrix_str_plain_isspmatrix_tuple, const_int_pos_1 );
if ( tmp_import_name_from_8 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 17;
goto frame_exception_exit_1;
}
tmp_assign_source_15 = IMPORT_NAME( tmp_import_name_from_8, const_str_plain_isspmatrix );
Py_DECREF( tmp_import_name_from_8 );
if ( tmp_assign_source_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 17;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix, tmp_assign_source_15 );
tmp_import_globals_12 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_9 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_12, tmp_import_globals_12, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_9 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_16 = IMPORT_NAME( tmp_import_name_from_9, const_str_plain_isdense );
Py_DECREF( tmp_import_name_from_9 );
if ( tmp_assign_source_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isdense, tmp_assign_source_16 );
tmp_import_globals_13 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_10 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_13, tmp_import_globals_13, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_10 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_17 = IMPORT_NAME( tmp_import_name_from_10, const_str_plain_getdtype );
Py_DECREF( tmp_import_name_from_10 );
if ( tmp_assign_source_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_getdtype, tmp_assign_source_17 );
tmp_import_globals_14 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_11 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_14, tmp_import_globals_14, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_11 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_18 = IMPORT_NAME( tmp_import_name_from_11, const_str_plain_isshape );
Py_DECREF( tmp_import_name_from_11 );
if ( tmp_assign_source_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isshape, tmp_assign_source_18 );
tmp_import_globals_15 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_12 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_15, tmp_import_globals_15, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_12 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_19 = IMPORT_NAME( tmp_import_name_from_12, const_str_plain_isintlike );
Py_DECREF( tmp_import_name_from_12 );
if ( tmp_assign_source_19 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isintlike, tmp_assign_source_19 );
tmp_import_globals_16 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_13 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_16, tmp_import_globals_16, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_13 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_20 = IMPORT_NAME( tmp_import_name_from_13, const_str_plain_isscalarlike );
Py_DECREF( tmp_import_name_from_13 );
if ( tmp_assign_source_20 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isscalarlike, tmp_assign_source_20 );
tmp_import_globals_17 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_14 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_17, tmp_import_globals_17, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_14 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_21 = IMPORT_NAME( tmp_import_name_from_14, const_str_plain_upcast );
Py_DECREF( tmp_import_name_from_14 );
if ( tmp_assign_source_21 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast, tmp_assign_source_21 );
tmp_import_globals_18 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_15 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_18, tmp_import_globals_18, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_15 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_22 = IMPORT_NAME( tmp_import_name_from_15, const_str_plain_upcast_scalar );
Py_DECREF( tmp_import_name_from_15 );
if ( tmp_assign_source_22 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_upcast_scalar, tmp_assign_source_22 );
tmp_import_globals_19 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_16 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_19, tmp_import_globals_19, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_16 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_23 = IMPORT_NAME( tmp_import_name_from_16, const_str_plain_IndexMixin );
Py_DECREF( tmp_import_name_from_16 );
if ( tmp_assign_source_23 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_IndexMixin, tmp_assign_source_23 );
tmp_import_globals_20 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 18;
tmp_import_name_from_17 = IMPORT_MODULE( const_str_plain_sputils, tmp_import_globals_20, tmp_import_globals_20, const_tuple_b02639bf6cc07f4723dcbfff50086a2f_tuple, const_int_pos_1 );
if ( tmp_import_name_from_17 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
tmp_assign_source_24 = IMPORT_NAME( tmp_import_name_from_17, const_str_plain_get_index_dtype );
Py_DECREF( tmp_import_name_from_17 );
if ( tmp_assign_source_24 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 18;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_get_index_dtype, tmp_assign_source_24 );
// Tried block of try/except
tmp_import_globals_21 = ((PyModuleObject *)module_scipy$sparse$dok)->md_dict;
frame_module->f_lineno = 22;
tmp_import_name_from_18 = IMPORT_MODULE( const_str_plain_operator, tmp_import_globals_21, tmp_import_globals_21, const_tuple_str_plain_isSequenceType_tuple, const_int_0 );
if ( tmp_import_name_from_18 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 22;
goto try_except_handler_1;
}
tmp_assign_source_25 = IMPORT_NAME( tmp_import_name_from_18, const_str_plain_isSequenceType );
Py_DECREF( tmp_import_name_from_18 );
if ( tmp_assign_source_25 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 22;
goto try_except_handler_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__is_sequence, tmp_assign_source_25 );
goto try_except_end_1;
try_except_handler_1:;
// Exception handler of try/except
// Preserve existing published exception.
PRESERVE_FRAME_EXCEPTION( frame_module );
if (exception_tb == NULL)
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_module ) );
}
else if ( exception_tb->tb_frame != frame_module || exception_tb->tb_lineno != frame_module->f_lineno )
{
exception_tb = ADD_TRACEBACK( frame_module, exception_tb );
}
NORMALIZE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
PUBLISH_EXCEPTION( &exception_type, &exception_value, &exception_tb );
tmp_compare_left_1 = PyThreadState_GET()->exc_type;
tmp_compare_right_1 = PyExc_ImportError;
tmp_exc_match_exception_match_1 = EXCEPTION_MATCH_BOOL( tmp_compare_left_1, tmp_compare_right_1 );
if ( tmp_exc_match_exception_match_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 23;
goto frame_exception_exit_1;
}
if (tmp_exc_match_exception_match_1 == 1)
{
goto branch_yes_1;
}
else
{
goto branch_no_1;
}
branch_yes_1:;
tmp_assign_source_26 = MAKE_FUNCTION_function_1__is_sequence_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_26 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_26 );
frame_module->f_lineno = 24;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__is_sequence, tmp_assign_source_26 );
goto branch_end_1;
branch_no_1:;
RERAISE_EXCEPTION( &exception_type, &exception_value, &exception_tb );
if (exception_tb && exception_tb->tb_frame == frame_module) frame_module->f_lineno = exception_tb->tb_lineno;
goto frame_exception_exit_1;
branch_end_1:;
try_except_end_1:;
// Tried code
tmp_assign_source_27 = PyTuple_New( 3 );
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_spmatrix );
if (unlikely( tmp_tuple_element_1 == NULL ))
{
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_spmatrix );
}
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_assign_source_27 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 260320 ], 30, 0 );
exception_tb = NULL;
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_assign_source_27, 0, tmp_tuple_element_1 );
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_IndexMixin );
if (unlikely( tmp_tuple_element_1 == NULL ))
{
tmp_tuple_element_1 = GET_STRING_DICT_VALUE( dict_builtin, (Nuitka_StringObject *)const_str_plain_IndexMixin );
}
if ( tmp_tuple_element_1 == NULL )
{
Py_DECREF( tmp_assign_source_27 );
exception_type = INCREASE_REFCOUNT( PyExc_NameError );
exception_value = UNSTREAM_STRING( &constant_bin[ 261135 ], 32, 0 );
exception_tb = NULL;
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_assign_source_27, 1, tmp_tuple_element_1 );
tmp_tuple_element_1 = LOOKUP_BUILTIN( const_str_plain_dict );
if ( tmp_tuple_element_1 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_27 );
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
Py_INCREF( tmp_tuple_element_1 );
PyTuple_SET_ITEM( tmp_assign_source_27, 2, tmp_tuple_element_1 );
assert( tmp_class_creation_1__bases.object == NULL );
tmp_class_creation_1__bases.object = tmp_assign_source_27;
tmp_assign_source_28 = impl_class_2_dok_matrix_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_28 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
assert( tmp_class_creation_1__class_dict.object == NULL );
tmp_class_creation_1__class_dict.object = tmp_assign_source_28;
tmp_compare_left_2 = const_str_plain___metaclass__;
tmp_compare_right_2 = tmp_class_creation_1__class_dict.object;
tmp_cmp_In_1 = PySequence_Contains( tmp_compare_right_2, tmp_compare_left_2 );
if ( tmp_cmp_In_1 == -1 )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
if (tmp_cmp_In_1 == 1)
{
goto condexpr_true_1;
}
else
{
goto condexpr_false_1;
}
condexpr_true_1:;
tmp_dget_dict_1 = tmp_class_creation_1__class_dict.object;
tmp_dget_key_1 = const_str_plain___metaclass__;
tmp_assign_source_29 = DICT_GET_ITEM( tmp_dget_dict_1, tmp_dget_key_1 );
if ( tmp_assign_source_29 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
goto condexpr_end_1;
condexpr_false_1:;
tmp_class_bases_1 = tmp_class_creation_1__bases.object;
tmp_assign_source_29 = SELECT_METACLASS( tmp_class_bases_1, GET_STRING_DICT_VALUE( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain___metaclass__ ) );
condexpr_end_1:;
assert( tmp_class_creation_1__metaclass.object == NULL );
tmp_class_creation_1__metaclass.object = tmp_assign_source_29;
tmp_called_1 = tmp_class_creation_1__metaclass.object;
tmp_call_arg_element_1 = const_str_plain_dok_matrix;
tmp_call_arg_element_2 = tmp_class_creation_1__bases.object;
tmp_call_arg_element_3 = tmp_class_creation_1__class_dict.object;
frame_module->f_lineno = 29;
tmp_assign_source_30 = CALL_FUNCTION_WITH_ARGS3( tmp_called_1, tmp_call_arg_element_1, tmp_call_arg_element_2, tmp_call_arg_element_3 );
if ( tmp_assign_source_30 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
frame_module->f_lineno = 29;
goto try_finally_handler_1;
}
assert( tmp_class_creation_1__class.object == NULL );
tmp_class_creation_1__class.object = tmp_assign_source_30;
tmp_assign_source_31 = tmp_class_creation_1__class.object;
UPDATE_STRING_DICT0( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_dok_matrix, tmp_assign_source_31 );
// Final block of try/finally
// Tried block ends with no exception occured, note that.
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
try_finally_handler_1:;
exception_keeper_type_1 = exception_type;
exception_keeper_value_1 = exception_value;
exception_keeper_tb_1 = exception_tb;
exception_type = NULL;
exception_value = NULL;
exception_tb = NULL;
tmp_tried_lineno_1 = frame_module->f_lineno;
Py_XDECREF( tmp_class_creation_1__class.object );
tmp_class_creation_1__class.object = NULL;
Py_XDECREF( tmp_class_creation_1__bases.object );
tmp_class_creation_1__bases.object = NULL;
Py_XDECREF( tmp_class_creation_1__class_dict.object );
tmp_class_creation_1__class_dict.object = NULL;
Py_XDECREF( tmp_class_creation_1__metaclass.object );
tmp_class_creation_1__metaclass.object = NULL;
frame_module->f_lineno = tmp_tried_lineno_1;
// Re-reraise as necessary after finally was executed.
// Reraise exception if any.
if ( exception_keeper_type_1 != NULL )
{
exception_type = exception_keeper_type_1;
exception_value = exception_keeper_value_1;
exception_tb = exception_keeper_tb_1;
goto frame_exception_exit_1;
}
goto finally_end_1;
finally_end_1:;
tmp_assign_source_32 = MAKE_FUNCTION_function_3__list_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_32 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_32 );
frame_module->f_lineno = 495;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__list, tmp_assign_source_32 );
tmp_assign_source_33 = MAKE_FUNCTION_function_4_isspmatrix_dok_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_33 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_33 );
frame_module->f_lineno = 502;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain_isspmatrix_dok, tmp_assign_source_33 );
tmp_assign_source_34 = MAKE_FUNCTION_function_5__prod_of_module_scipy$sparse$dok( );
if ( tmp_assign_source_34 == NULL )
{
assert( ERROR_OCCURED() );
PyErr_Fetch( &exception_type, &exception_value, (PyObject **)&exception_tb );
Py_DECREF( tmp_assign_source_34 );
frame_module->f_lineno = 506;
goto frame_exception_exit_1;
}
UPDATE_STRING_DICT1( moduledict_scipy$sparse$dok, (Nuitka_StringObject *)const_str_plain__prod, tmp_assign_source_34 );
// Restore frame exception if necessary.
#if 1
RESTORE_FRAME_EXCEPTION( frame_module );
#endif
popFrameStack();
assertFrameObject( frame_module );
Py_DECREF( frame_module );
goto frame_no_exception_1;
frame_exception_exit_1:;
#if 1
RESTORE_FRAME_EXCEPTION( frame_module );
#endif
if ( exception_tb == NULL )
{
exception_tb = MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_module ) );
}
else if ( exception_tb->tb_frame != frame_module )
{
PyTracebackObject *traceback_new = (PyTracebackObject *)MAKE_TRACEBACK( INCREASE_REFCOUNT( frame_module ) );
traceback_new->tb_next = exception_tb;
exception_tb = traceback_new;
}
// Put the previous frame back on top.
popFrameStack();
#if PYTHON_VERSION >= 340
frame_module->f_executing -= 1;
#endif
Py_DECREF( frame_module );
// Return the error.
goto module_exception_exit;
frame_no_exception_1:;
return MOD_RETURN_VALUE( module_scipy$sparse$dok );
module_exception_exit:
PyErr_Restore( exception_type, exception_value, (PyObject *)exception_tb );
return MOD_RETURN_VALUE( NULL );
}
|
384b3a81737440ef5b998877711e1398dbdbbfae | 20ca04aa81670212abaace11ead8906033bbcfc5 | /cpp/Euler2.cpp | 89839f5d74ca529614f38f56b4e19b070243dece | [] | no_license | Rahovec/TU_1kurs | 7e8bd1785c3d33e8b7581393c41f615a7d4a7640 | 02e91cec41d1c4615dc0e724f9526682ce1f0f64 | refs/heads/master | 2022-01-19T23:02:53.545189 | 2019-05-09T19:02:51 | 2019-05-09T19:02:51 | 108,681,993 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 634 | cpp | Euler2.cpp | /*Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be:
1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ...
By considering the terms in the Fibonacci sequence whose values do not exceed four million, find the sum of the even-valued terms.
Answer: Problem 002: 4613732
*/
#include <iostream>
using namespace :: std;
int main(){
long fib1 = 1;
long fib2 = 2;
long fib3 = 0;
long sum = 0;
while(fib3 <= 4000000){
fib3 = fib1 + fib2;
fib1 = fib2;
fib2 = fib3;
if(fib3%2==0){sum += fib3;}
}
cout << "Result is " << sum + 2 << endl;
return 0;
}
|
5ae79b35734946dff306202efab4b485fdb64d71 | e38c357a31a1905370a03c8bf1ec791b6b171ea8 | /metody-numeryczne/cwiczenia-9/cwiczenia-9.cpp | 4622b1cc841d23cecbe41fc4fcf85c58b5b298dd | [
"MIT"
] | permissive | YaYanush/software-engineering | afeaaf8d68e7e2356a74614a7568e3085b9f0d3d | 30b5c3431a9034bf5850bf6a4992984027aeaed1 | refs/heads/master | 2023-04-13T19:16:46.535782 | 2021-05-05T19:39:47 | 2021-05-05T19:39:47 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 950 | cpp | cwiczenia-9.cpp | #include <iostream>
#include "LCG_generator.h"
#include <vector>
#include <algorithm>
#include <numeric>
int main() {
LCG_generator gen(7);
std::vector<double> random_nums;
for (int i = 0; i < 10000; i++)
random_nums.push_back(gen.random());
//for (const auto& num : random_nums)
// std::cout << num << " ";
std::cout << "\n";
double mean = std::accumulate(random_nums.begin(), random_nums.end(), 0.0) / random_nums.size();
std::cout << "mean: " << mean << "\n";
auto sum_var = [&mean](double a, double b) {
return std::move(a) + (b - mean) * (b - mean);
};
double variance1 = std::accumulate(random_nums.begin(), random_nums.end(), 0.0, sum_var) / random_nums.size();
std::cout << "variance: " << variance1 << "\n";
double var_sum = 0;
for (const auto& num : random_nums)
var_sum += (num - mean) * (num - mean);
double variance = var_sum / random_nums.size();
std::cout << "variance: " << variance << "\n";
return 0;
} |
6c582752fa7c1df6a342504893c7d2473ddefbaf | a52f9f1165a97a161e371e5d2c72fdd61593341f | /external/pcl/include/pcl/Allocator.h | d0f79103edb64675ce3c81f65db1d5dcd840447d | [
"LGPL-3.0-only",
"LGPL-2.0-or-later",
"Zlib",
"MIT"
] | permissive | AstrocatApp/AstrocatApp | 3c27d7b1c1413dbc531f8ed973da3d3d525f59ff | 0b3b33861260ed495bfcbd4c8601ab82ad247d37 | refs/heads/master | 2023-08-12T01:07:57.961008 | 2021-05-25T05:15:24 | 2021-05-25T05:15:24 | 335,548,027 | 2 | 1 | MIT | 2021-10-07T05:15:50 | 2021-02-03T07:53:32 | C++ | UTF-8 | C++ | false | false | 14,140 | h | Allocator.h | // ____ ______ __
// / __ \ / ____// /
// / /_/ // / / /
// / ____// /___ / /___ PixInsight Class Library
// /_/ \____//_____/ PCL 2.4.7
// ----------------------------------------------------------------------------
// pcl/Allocator.h - Released 2020-12-17T15:46:29Z
// ----------------------------------------------------------------------------
// This file is part of the PixInsight Class Library (PCL).
// PCL is a multiplatform C++ framework for development of PixInsight modules.
//
// Copyright (c) 2003-2020 Pleiades Astrophoto S.L. All Rights Reserved.
//
// Redistribution and use in both source and binary forms, with or without
// modification, is permitted provided that the following conditions are met:
//
// 1. All redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. All redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the names "PixInsight" and "Pleiades Astrophoto", nor the names
// of their contributors, may be used to endorse or promote products derived
// from this software without specific prior written permission. For written
// permission, please contact info@pixinsight.com.
//
// 4. All products derived from this software, in any form whatsoever, must
// reproduce the following acknowledgment in the end-user documentation
// and/or other materials provided with the product:
//
// "This product is based on software from the PixInsight project, developed
// by Pleiades Astrophoto and its contributors (https://pixinsight.com/)."
//
// Alternatively, if that is where third-party acknowledgments normally
// appear, this acknowledgment must be reproduced in the product itself.
//
// THIS SOFTWARE IS PROVIDED BY PLEIADES ASTROPHOTO AND ITS CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
// TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PLEIADES ASTROPHOTO OR ITS
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, BUSINESS
// INTERRUPTION; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; AND LOSS OF USE,
// DATA OR PROFITS) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
// ----------------------------------------------------------------------------
#ifndef __PCL_Allocator_h
#define __PCL_Allocator_h
/// \file pcl/Allocator.h
#include <pcl/Defs.h>
#include <pcl/Diagnostics.h>
#include <pcl/Relational.h>
#include <pcl/Utility.h>
namespace pcl
{
// ----------------------------------------------------------------------------
/*!
* \class Allocator
* \brief Provides memory allocation for PCL containers.
*
* %Allocator inherits directly from its template argument A, which
* corresponds to a <em>block allocator</em> class. A block allocator is
* responsible for allocation and deallocation of untyped blocks of contiguous
* memory. %Allocator inherits block allocation capabilities and specializes
* them for allocation of a particular type T.
*
* The type T must have default and copy construction semantics.
*
* Besides the default and copy constructors, the block allocator class A must
* define the following member functions:
*
* \code
* size_type A::MaxSize() const
* \endcode
*
* Returns the maximum size in bytes that the block allocator is able to
* allocate as a contiguous memory block.
*
* \code
* size_type A::BlockSize( size_type n ) const
* \endcode
*
* Returns the size in bytes of an <em>allocation block</em> suitable to store
* at least \a n contiguous bytes. %Allocator uses this block size to reserve
* memory in chunks of optimized length. This greatly improves efficiency of
* containers because it minimizes the frequency of allocation/deallocation
* operations.
*
* \code
* size_type A::ReallocatedBlockSize( size_type currentSize, size_type newSize ) const
* \endcode
*
* Returns the size in bytes of a reallocated block. \a currentSize is the
* current size in bytes of the block being reallocated, and \a newSize is the
* requested block size. This function is similar to A::BlockSize(), but it is
* called for reallocation of already existing data blocks, for example before
* deleting a subset of container elements.
*
* \code
* void* AllocateBlock( size_type sz )
* \endcode
*
* Custom allocation routine. Allocates a contiguous memory block of length
* \a sz in bytes, and returns the address of the first byte in the newly
* allocated block.
*
* \code
* void DeallocateBlock( void* p )
* \endcode
*
* Custom deallocation routine. Deallocates a contiguous block of memory that
* has been previously allocated by any allocator of class A.
*
* StandardAllocator is an example of a block allocator that uses the standard
* \c new and \c delete operators.
*
* \sa StandardAllocator
*/
template <class T, class A>
class PCL_CLASS Allocator : public A
{
public:
/*!
* Default constructor.
*/
Allocator() = default;
/*!
* Copy constructor.
*/
Allocator( const Allocator<T,A>& ) = default;
/*!
* Constructs an %Allocator instance as a copy of other block allocator.
*/
Allocator( const A& a )
: A( a )
{
}
/*!
* Allocates a contiguous block of memory, sufficient to store at least \a n
* instance of class T. Optionally, allocates the necessary space for \a n
* objects plus \a extra additional bytes.
*
* Returns the starting address of the allocated block.
*
* \note This member function <em>does not construct</em> any T instance;
* it only allocates the required memory to store \a n instances of T.
*/
T* Allocate( size_type n, size_type extra = 0 )
{
PCL_PRECONDITION( n+extra > 0 )
return (T*)this->AllocateBlock( n*sizeof( T )+extra );
//return (T*)new ( *this ) uint8[ n*sizeof( T )+extra ];
}
/*!
* Deallocates a block of memory.
*
* \note This member function <em>does not destruct</em> any T instance; it
* only deallocates a previously allocated block where an unspecified number
* of T instances might be stored (either constructed or not).
*/
void Deallocate( T* p )
{
PCL_PRECONDITION( p != nullptr )
this->DeallocateBlock( (void*)p );
//this->operator delete( (void*)p );
}
/*!
* Returns the maximum number of instances of class T that this allocator
* can allocate.
*/
size_type MaxLength() const
{
return A::MaxSize()/sizeof( T );
}
/*!
* Returns the length of a newly allocated data block.
*
* Given a number \a n of T instances, returns the corresponding <em>paged
* length</em> for this allocator. The paged length is the actual number of
* T instances that would be allocated instead of \a n, which depends on the
* block allocation policy implemented by the block allocator class.
*
* The value returned by this member function is always greater than or
* equal to \a n.
*
* \sa ShrunkLength()
*/
size_type PagedLength( size_type n ) const
{
return A::BlockSize( n*sizeof( T ) )/sizeof( T );
}
/*!
* Returns the length of a reallocated data block.
*
* \param currentLength The current length of an allocated data block.
*
* \param newLength The new length of the reallocated data block.
*
* The returned length is the actual number of T instances that would be
* allocated instead of \a newLength, which depends on the block allocation
* policy implemented by the block allocator class.
*
* The value returned by this member function is always greater than or
* equal to \a n.
*
* \sa PagedLength()
*/
size_type ReallocatedLength( size_type currentLength, size_type newLength ) const
{
return A::ReallocatedBlockSize( currentLength*sizeof( T ), newLength*sizeof( T ) )/sizeof( T );
}
};
// ----------------------------------------------------------------------------
/*!
* \defgroup object_construction_destruction Construction and \
* Destruction of Objects with Explicit Allocation
*/
/*!
* Constructs an object with storage at address \a p and allocator \a a. This
* function invokes the default constructor of class T for the object stored at
* \a p.
* \sa Allocator
* \ingroup object_construction_destruction
*/
template <class T, class A> inline void Construct( T* p, A& a )
{
PCL_PRECONDITION( p != nullptr )
new( (void*)p, a )T();
}
/*!
* Constructs an object with storage at address \a p, initial value \a v, and
* allocator \a a. This function invokes the copy constructor of class T, with
* argument \a v, for the object stored at \a p.
* \sa Allocator
* \ingroup object_construction_destruction
*/
template <class T, class T1, class A> inline void Construct( T* p, const T1& v, A& a )
{
PCL_PRECONDITION( p != nullptr )
new( (void*)p, a )T( v );
}
#ifdef _MSC_VER
# pragma warning( push )
# pragma warning( disable : 4100 ) // unreferenced formal parameter
#endif // (VC++ limitation !?)
/*!
* Destroys an object stored at address \a p. Invokes the destructor of
* class T for the object stored at \a p.
* \sa Allocator
* \ingroup object_construction_destruction
*/
template <class T> inline void Destroy( T* p )
{
PCL_PRECONDITION( p != nullptr )
p->~T();
}
/*!
* Destroys a contiguous sequence of objects. Invokes the destructor of class
* T for each object in the range [p,q).
* \sa Allocator
* \ingroup object_construction_destruction
*/
template <class T> inline void Destroy( T* p, T* q )
{
PCL_PRECONDITION( p != nullptr && q != nullptr )
for ( ; p < q; ++p )
p->~T();
}
#ifdef _MSC_VER
# pragma warning( pop )
#endif
inline void Destroy( void* ) {}
inline void Destroy( void*, void* ) {}
inline void Destroy( bool* ) {}
inline void Destroy( bool*, bool* ) {}
inline void Destroy( signed char* ) {}
inline void Destroy( signed char*, signed char* ) {}
inline void Destroy( unsigned char* ) {}
inline void Destroy( unsigned char*, unsigned char* ) {}
inline void Destroy( wchar_t* ) {}
inline void Destroy( wchar_t*, wchar_t* ) {}
inline void Destroy( char16_t* ) {}
inline void Destroy( char16_t*, char16_t* ) {}
inline void Destroy( char32_t* ) {}
inline void Destroy( char32_t*, char32_t* ) {}
inline void Destroy( signed int* ) {}
inline void Destroy( signed int*, signed int* ) {}
inline void Destroy( unsigned int* ) {}
inline void Destroy( unsigned int*, unsigned int* ) {}
inline void Destroy( signed short* ) {}
inline void Destroy( signed short*, signed short* ) {}
inline void Destroy( unsigned short* ) {}
inline void Destroy( unsigned short*, unsigned short* ) {}
inline void Destroy( signed long* ) {}
inline void Destroy( signed long*, signed long* ) {}
inline void Destroy( unsigned long* ) {}
inline void Destroy( unsigned long*, unsigned long* ) {}
inline void Destroy( signed long long* ) {}
inline void Destroy( signed long long*, signed long long* ) {}
inline void Destroy( unsigned long long* ) {}
inline void Destroy( unsigned long long*, unsigned long long* ) {}
inline void Destroy( float* ) {}
inline void Destroy( float*, float* ) {}
inline void Destroy( double* ) {}
inline void Destroy( double*, double* ) {}
inline void Destroy( long double* ) {}
inline void Destroy( long double*, long double* ) {}
inline void Destroy( void** ) {}
inline void Destroy( void**, void** ) {}
inline void Destroy( bool** ) {}
inline void Destroy( bool**, bool** ) {}
inline void Destroy( signed char** ) {}
inline void Destroy( signed char**, signed char** ) {}
inline void Destroy( unsigned char** ) {}
inline void Destroy( unsigned char**, unsigned char** ) {}
inline void Destroy( wchar_t** ) {}
inline void Destroy( wchar_t**, wchar_t** ) {}
inline void Destroy( signed int** ) {}
inline void Destroy( signed int**, signed int** ) {}
inline void Destroy( unsigned int** ) {}
inline void Destroy( unsigned int**, unsigned int** ) {}
inline void Destroy( signed short** ) {}
inline void Destroy( signed short**, signed short** ) {}
inline void Destroy( unsigned short** ) {}
inline void Destroy( unsigned short**, unsigned short** ) {}
inline void Destroy( signed long** ) {}
inline void Destroy( signed long**, signed long** ) {}
inline void Destroy( unsigned long** ) {}
inline void Destroy( unsigned long**, unsigned long** ) {}
inline void Destroy( signed long long** ) {}
inline void Destroy( signed long long**, signed long long** ) {}
inline void Destroy( unsigned long long** ) {}
inline void Destroy( unsigned long long**, unsigned long long** ) {}
inline void Destroy( float** ) {}
inline void Destroy( float**, float** ) {}
inline void Destroy( double** ) {}
inline void Destroy( double**, double** ) {}
inline void Destroy( long double** ) {}
inline void Destroy( long double**, long double** ) {}
// ----------------------------------------------------------------------------
} // pcl
#endif // __PCL_Allocator_h
// ----------------------------------------------------------------------------
// EOF pcl/Allocator.h - Released 2020-12-17T15:46:29Z
|
57ed86a47fa64a9ccf8148062e3021ed70be7b06 | 45457cf6c730af6f10b985fb2098c6ab949d9873 | /old_core/WaveSynth.cpp | ea7fe1b1aaaeaa06997012832b104aa616db4632 | [] | no_license | abresee/note | 2691404bd7c9ae9679d2aa9bbd5eb18020018f6f | 3e249bde98dc0441bcbde3448e0f339d5b5706eb | refs/heads/master | 2016-09-05T16:29:56.052049 | 2014-01-23T23:05:51 | 2014-01-23T23:05:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,801 | cpp | WaveSynth.cpp | #include <cmath>
#include <numeric>
#include <iostream>
#include "WaveSynth.h"
//////////////////////////////
// Wave Inner Class Definition
//////////////////////////////
WaveSynth::Wave::Wave():
functor_(static_cast<double(*)(double)>(std::sin)){
}
WaveSynth::Wave::Wave(const Functor& functor_initializer):
functor_(functor_initializer) {
}
double WaveSynth::Wave::operator()(const double angle) const {
auto result = functor_(angle);
return result;
}
///////////////////////////////
// Waves Inner Class Definition
///////////////////////////////
WaveSynth::Waves::Waves(const size_type size):
waves_(size,Wave()) {
}
WaveSynth::Waves::Waves(const size_type size,const Wave& wave_initializer):
waves_(size,wave_initializer) {
}
WaveSynth::Waves::Waves(std::initializer_list<Wave> l):
waves_(l) {
}
double WaveSynth::Waves::operator()(const double angle) const {
double result=0;
for(Wave wave : waves_) {
result+=wave(angle);
}
return result;
}
/////////////////////////////////
// WaveSynth Class Definition
/////////////////////////////////
WaveSynth::WaveSynth(const Offset& sample_rate_init, const double& freq_reference_init, const std::string& dumpname):
Instrument(sample_rate_init, freq_reference_init, dumpname),
waves_(1){}
Packet WaveSynth::gen(const Note& note) {
const Offset length = note.length().to_offset(Config::tempo, Config::sample_rate);
Packet ret(length.value());
for(int i = 0; i < length.value(); ++i) {
ret.at(i)=round(note.intensity().value()*waves_(omega(note) * (i)));
}
const auto fade_len(3*period_i(note).value());
fade(std::make_tuple(ret.begin(),ret.begin()+fade_len));
fade(std::make_tuple(ret.rbegin(),ret.rbegin()+fade_len));
return ret;
}
|
f378011aff9f06181907259fb82ded7308f76163 | c5c217f252906de5d4e7bbff8a2f15a9629183bf | /src/main.cpp | 42b60723bbce40b367db767f70282d01b558ac09 | [
"MIT"
] | permissive | JolifantoBambla/Auto-Vk-Starter | d875f2cbdd83e5b7ac50d2562e06e973ea1652c6 | 05fae0fdd39ad341616785b2a2d384a825d360b8 | refs/heads/main | 2023-07-17T07:00:31.970191 | 2021-09-07T16:09:57 | 2021-09-07T16:09:57 | 326,689,793 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,369 | cpp | main.cpp | #include <iostream>
#include <vector>
#include "avk/avk.hpp"
class my_root : public avk::root {
public:
vk::Instance vulkan_instance() {
if (!mInstance) {
mInstance = vk::createInstanceUnique(vk::InstanceCreateInfo{});
}
return mInstance.get();
}
vk::PhysicalDevice &physical_device() override {
if (!mPhysicalDevice) {
mPhysicalDevice = vulkan_instance().enumeratePhysicalDevices().front();
}
return mPhysicalDevice;
}
vk::Device &device() override {
if (!mDevice) {
// Select one queue that can handle everything:
auto queueFamilyIndex = avk::queue::find_best_queue_family_for(physical_device(), {}, avk::queue_selection_preference::versatile_queue, {});
auto queues = avk::make_vector(avk::queue::prepare(physical_device(), 0, 0));
auto config = avk::queue::get_queue_config_for_DeviceCreateInfo(std::begin(queues), std::end(queues));
for (auto i = 0; i < std::get<0>(config).size(); ++i) {
std::get<0>(config)[i].setPQueuePriorities(std::get<1>(config)[i].data());
}
// Create the device using the queue information from above:
mDevice = physical_device().createDeviceUnique(vk::DeviceCreateInfo{}
.setQueueCreateInfoCount(1u)
.setPQueueCreateInfos(std::get<0>(config).data()));
// AFTER device creation, the queue handle(s) can be assigned to the queues:
queues[0].assign_handle(mDevice.get());
// Store the queue:
mQueue = std::move(queues[0]);
// With the device in place, create a dynamic dispatch loader:
mDynamicDispatch = vk::DispatchLoaderDynamic(
vulkan_instance(),
vkGetInstanceProcAddr,
device());
#if defined(AVK_USE_VMA)
// With everything in place, create the memory allocator:
VmaAllocatorCreateInfo allocatorInfo = {};
allocatorInfo.physicalDevice = physical_device();
allocatorInfo.device = device();
allocatorInfo.instance = vulkan_instance();
// you might want to set some flags via allocatorInfo.flags
vmaCreateAllocator(&allocatorInfo, &mMemoryAllocator);
#else
mMemoryAllocator = {physical_device(), device()};
#endif
}
return mDevice.get();
}
vk::DispatchLoaderDynamic &dynamic_dispatch() override {
if (!mDevice) {
device();
}
return mDynamicDispatch;
}
AVK_MEM_ALLOCATOR_TYPE& memory_allocator() override {
return mMemoryAllocator;
}
vk::Queue queue() {
if (!mDevice) {
device();
}
return mQueue.handle();
}
private:
vk::UniqueInstance mInstance;
vk::PhysicalDevice mPhysicalDevice;
vk::UniqueDevice mDevice;
vk::DispatchLoaderDynamic mDynamicDispatch;
AVK_MEM_ALLOCATOR_TYPE mMemoryAllocator;
avk::queue mQueue;
};
int main() {
try {
auto myRoot = my_root{};
std::array<int8_t, 12> data = {72, 101, 108, 108, 111, 32, 87, 111, 114, 108, 100, 33};
auto myBuffer = myRoot.create_buffer(
avk::memory_usage::host_coherent, {},
avk::generic_buffer_meta::create_from_data(data));
myBuffer->fill(data.data(), 0, avk::sync::not_required());
std::string readFromBuffer(data.size(), ' ');
myBuffer->read(readFromBuffer.data(), 0, avk::sync::not_required());
std::cout << readFromBuffer << '\n';
} catch (std::runtime_error &e) {
std::cout << e.what() << '\n';
}
return 0;
}
|
66e170f25e460f9e3785f9ea0b40ea4d2955c811 | bba8ad0d783119c7d9a413b4ead7654ed074fc2a | /Volume009/00913 - Joana and the Odd Numbers.cpp | 44873c4b7e23c68b899705d38172314ad79672e3 | [] | no_license | m00p1ng/UVa-problem | 08d1298225a7d2bffef3e99ff33fd2f940d7924c | 9517304685e6681e7027335dbbea20f643d5fc37 | refs/heads/master | 2023-04-04T10:51:12.141260 | 2021-04-16T23:08:27 | 2021-04-16T23:08:27 | 81,700,393 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 152 | cpp | 00913 - Joana and the Odd Numbers.cpp | #include <cstdio>
int main() {
long long n, l;
while(scanf("%lld", &n) == 1) {
l = (n+1)/2;
printf("%lld\n", 6*l*l-9);
}
}
|
9587894fc9afcdc2029e68f041abab465b718f5f | 8448cec98fe40583bd5d0198feba6a3132acc592 | /ACMICPC/울타리_1047_골.cpp | b9dae5742e71d3f6f0d51d570588d88e5e3c9daf | [] | no_license | Eunno-An/ACMICPC_boj | 69b4ec4dd1d4c9bd1b63155de3340c05abcc1a20 | 8ca889be49d521c25679497f669f94dcb2fb9733 | refs/heads/master | 2023-08-04T08:52:30.571753 | 2021-09-06T10:45:26 | 2021-09-06T10:45:26 | 331,949,296 | 1 | 0 | null | null | null | null | UHC | C++ | false | false | 2,025 | cpp | 울타리_1047_골.cpp |
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <climits>
#include <cstring>
#include <string>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <map>
#include<iomanip>
using namespace std;
/*
- endl 대신 '\n' 사용하기
- cin.tie(0) 사용
- 테스트 케이스 있는 문제일 시 전역변수 초기화 신경쓰기
- (A + B + C) % D = ((A + B) % D + C) % D
- 문자열 출력 문제는 정답 문자열 복사해서 코드에 넣기
- 괄호 사용 유의하기
- 문자열은 함수로 넘길 때 const & 잘 사용하기
- 최악의 경우 int 값 초과하는지, 배열 인덱스 초과하는지 확인
- n 범위 확인 (0인 경우), 양수음수 정수소수 확인, 불가케이스 -1 출력 등 확인
- 큰 배열 선언 시 전역선언, 테케 많을 시 초기화, 배열 용량 max N + 5
*/
#define MOD 1000000007
#define INT_MAX 987654321
#define MAX 100005
typedef long long int ll;
typedef pair<int, int> pii;
int N;
// 테스트 케이스 초기화 시
void init()
{
}
bool compare(int a, int b) {
return a > b;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
init();
cin >> N;
int pos_x, pos_y, length_fense;
vector<int> vector_length;
int max_x = -1, max_y = -1;
int min_x = INT_MAX, min_y=INT_MAX;
for (int i = 0; i < N; i++) {
cin >> pos_x >> pos_y >> length_fense;
if (pos_x > max_x) {
max_x = pos_x;
}
if (pos_x < min_x) {
min_x = pos_x;
}
if (pos_y > max_y) {
max_y = pos_y;
}
if (pos_y < min_y) {
min_y = pos_y;
}
vector_length.push_back(length_fense);
}
sort(vector_length.begin(), vector_length.end(), compare);
int need_fense = ((max_x - min_x) + (max_y - min_y)) * 2;
int count = 0;
for (int i = 0; i < vector_length.size(); i++) {
if (vector_length[i] == 0) {
break;
}
need_fense -= vector_length[i];
if (need_fense < 0) {
break;
}
count++;
}
cout << count << '\n';
return 0;
} |
429df97f580a81caf59795ba1683c73ae58119fa | bd10600273b3c70a30fc03a5bd33da85754702bb | /packages/vpa2box/src/Search.inc | 9930790f49ed73f74ec3d7256b4a178e9c3e1186 | [] | no_license | ICCAT/software | 94dafdf918827b915d30bb12c77f28653481cfe8 | 61da036718ad4bab8f710e3407e8d3f78fa6d9f9 | refs/heads/master | 2020-04-15T11:43:12.835189 | 2019-04-04T14:53:49 | 2019-04-04T14:53:49 | 42,433,813 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 24,344 | inc | Search.inc | !---------------------------------------------------------------
SUBROUTINE ESTIMATE2 (p,step,nop,func,max,iprint,stopcr,nloop,iquad,simp,var,functn,ifault)
!---------------------------------------------------------------
! A PROGRAM FOR FUNCTION MINIMIZATION USING THE SIMPLEX METHOD.
! The minimum found will often be a local, not a global, minimum.
! Note that the present routine has been modified at line
! to allow runs reaching the maximum iteration to be reported
!
! FOR DETAILS, SEE NELDER & MEAD, THE COMPUTER JOURNAL, JANUARY 1965
!
! PROGRAMMED BY D.E.SHAW,
! CSIRO, DIVISION OF MATHEMATICS & STATISTICS
! P.O. BOX 218, LINDFIELD, N.S.W. 2070
!
! WITH AMENDMENTS BY R.W.M.WEDDERBURN
! ROTHAMSTED EXPERIMENTAL STATION
! HARPENDEN, HERTFORDSHIRE, ENGLAND
!
! Further amended by Alan Miller,
! CSIRO, Division of Mathematics & Statistics
! Private Bag 10, CLAYTON, VIC. 3168
!
! ARGUMENTS:-
! P() = INPUT, STARTING VALUES OF PARAMETERS
! OUTPUT, FINAL VALUES OF PARAMETERS
! STEP() = INPUT, INITIAL STEP SIZES
! NOP = INPUT, NO. OF PARAMETERS, INCL. ANY TO BE HELD FIXED
! FUN! = OUTPUT, THE FUNCTION VALUE CORRESPONDING TO THE FINAL
! PARAMETER VALUES
! MAX = INPUT, THE MAXIMUM NO. OF FUNCTION EVALUATIONS ALLOWED
! IPRINT = INPUT, PRINT CONTROL PARAMETER
! < 0 NO PRINTING
! = 0 PRINTING OF PARAMETER VALUES AND THE FUNCTION
! VALUE AFTER INITIAL EVIDENCE OF CONVERGENCE.
! > 0 AS FOR IPRINT = 0 PLUS PROGRESS REPORTS AFTER
! EVERY IPRINT EVALUATIONS, PLUS PRINTING FOR TH
! INITIAL SIMPLEX.
! STOPCR = INPUT, STOPPING CRITERION
! NLOOP = INPUT, THE STOPPING RULE IS APPLIED AFTER EVERY NLOOP
! FUNCTION EVALUATIONS.
! IQUAD = INPUT, = 1 IF THE FITTING OF A QUADRATIC SURFACE IS REQU
! = 0 IF NOT
! SIMP = INPUT, CRITERION FOR EXPANDING THE SIMPLEX TO OVERCOME
! ROUNDING ERRORS BEFORE FITTING THE QUADRATIC SURFACE.
! VAR() = OUTPUT, CONTAINS THE DIAGONAL ELEMENTS OF THE INVERSE OF
! THE INFORMATION MATRIX.
! FUNCTN = INPUT, NAME OF THE USER'S SUBROUTINE - ARGUMENTS (P,FUNC
! WHICH RETURNS THE FUNCTION VALUE FOR A GIVEN SET OF
! PARAMETER VALUES IN ARRAY P.
!**** FUNCTN MUST BE DECLARED EXTERNAL IN THE CALLING PROGRAM.
! IFAULT = OUTPUT, = 0 FOR SUCCESSFUL TERMINATION
! = 1 IF MAXIMUM NO. OF FUNCTION EVALUATIONS EXC
! = 2 IF INFORMATION MATRIX IS NOT +VE SEMI-DEFI
! = 3 IF NOP < 1
! = 4 IF NLOOP < 1
!
! Advice on usage:
! If the function minimized can be expected to be smooth in the vi
! of the minimum, users are strongly urged to use the quadratic-su
! fitting option. This is the only satisfactory way of testing t
! minimum has been found. The value of SIMP should be set to at
! 1000 times the rounding error in calculating the fitted function
! e.g. in double precision on a micro- or mini-computer with about
! decimal digit representation of floating-point numbers, the roun
! errors in calculating the objective function may be of the order
! 1.E-12 say in a particular case. A suitable value for SIMP wou
! be 1.E-08. However, if numerical integration is required in th
! calculation of the objective function, it may only be accurate t
! 1.E-05 and an appropriate value for SIMP would be about 0.1.
! If the fitted quadratic surface is not +ve definite (and the fun
! should be smooth in the vicinity of the minimum), it probably me
! that the search terminated prematurely and you have not found th
! minimum.
!
! N.B. P, STEP AND VAR (IF IQUAD = 1) MUST HAVE DIMENSION AT LEAST
! IN THE CALLING PROGRAM.
! THE DIMENSIONS BELOW ARE FOR A MAXIMUM OF 100 PARAMETERS.
! The dimension of BMAT should be at least NOP*(NOP+1)/2.
!
!**** N.B. This version is in DOUBLE PRECISION throughout
!
! LATEST REVISION - 11 August 1991
!
!***********************************************************************
!
implicit double precision (a-h,o-z)
external functn
dimension p(nop), step(nop), var(nop)
dimension g(401,400), h(401), pbar(400), pstar(400), pstst(400),aval(400), bmat(600000), pmin(400), vc(600000), temp(400)
data zero/0.d0/,one/1.d0/,two/2.d0/,three/3.d0/,half/0.5d0/
!
! A = REFLECTION COEFFICIENT, B = CONTRACTION COEFFICIENT, AND
! C = EXPANSION COEFFICIENT.
!
data a,b,c/1.d0,0.5d0,2.d0/
!
! SET LOUT = LOGICAL UNIT NO. FOR OUTPUT
!
data lout/12/
!
! IF PROGRESS REPORTS HAVE BEEN REQUESTED, PRINT HEADING
!
if (iprint.gt.0) write (lout,870) iprint
if (iprint.gt.0) write (*,880)
!
! CHECK INPUT ARGUMENTS
!
ifault=0
if (nop.le.0) ifault=3
if (nloop.le.0) ifault=4
if (ifault.ne.0) return
!
! SET NAP = NO. OF PARAMETERS TO BE VARIED, I.E. WITH STEP.NE.0
!
nap=0
loop=0
iflag=0
do 10 i=1,nop
if (step(i).ne.zero) nap=nap+1
10 continue
!
! IF NAP = 0 EVALUATE FUNCTION AT THE STARTING POINT AND RETURN
!
if (nap.gt.0) go to 20
call functn (p,func,nop)
return
!
! SET UP THE INITIAL SIMPLEX
!
20 do 30 i=1,nop
30 g(1,i)=p(i)
irow=2
do 50 i=1,nop
if (step(i).eq.zero) go to 50
do 40 j=1,nop
40 g(irow,j)=p(j)
g(irow,i)=p(i)+step(i)
irow=irow+1
50 continue
np1=nap+1
neval=0
do 70 i=1,np1
do 60 j=1,nop
60 p(j)=g(i,j)
call functn (p,h(i),nop)
neval=neval+1
if (iprint.le.0) go to 70
write (lout,890) neval,h(i),(p(j),j=1,nop)
write (*,900) neval,h(i),(p(j),j=1,nop)
70 continue
!
! START OF MAIN CYCLE.
!
! FIND MAX. & MIN. VALUES FOR CURRENT SIMPLEX (HMAX & HMIN).
!
80 loop=loop+1
imax=1
imin=1
hmax=h(1)
hmin=h(1)
do 100 i=2,np1
if (h(i).le.hmax) go to 90
imax=i
hmax=h(i)
go to 100
90 if (h(i).ge.hmin) go to 100
imin=i
hmin=h(i)
100 continue
!
! FIND THE CENTROID OF THE VERTICES OTHER THAN P(IMAX)
!
do 110 i=1,nop
110 pbar(i)=zero
do 130 i=1,np1
if (i.eq.imax) go to 130
do 120 j=1,nop
120 pbar(j)=pbar(j)+g(i,j)
130 continue
do 140 j=1,nop
fnap=nap
140 pbar(j)=pbar(j)/fnap
!
! REFLECT MAXIMUM THROUGH PBAR TO PSTAR,
! HSTAR = FUNCTION VALUE AT PSTAR.
!
do 150 i=1,nop
150 pstar(i)=a*(pbar(i)-g(imax,i))+pbar(i)
call functn (pstar,hstar,nop)
neval=neval+1
if (iprint.le.0) go to 160
if (mod(neval,iprint).eq.0) write (lout,890) neval,hstar,(pstar(j),j=1,nop)
if (mod(neval,iprint).eq.0) write (*,900) neval,hstar,(pstar(j),j=1,nop)
!
! IF HSTAR < HMIN, REFLECT PBAR THROUGH PSTAR,
! HSTST = FUNCTION VALUE AT PSTST.
!
160 if (hstar.ge.hmin) go to 200
do 170 i=1,nop
170 pstst(i)=c*(pstar(i)-pbar(i))+pbar(i)
call functn (pstst,hstst,nop)
neval=neval+1
if (iprint.le.0) go to 180
if (mod(neval,iprint).eq.0) write (lout,890) neval,hstst,(pstst(j),j=1,nop)
if (mod(neval,iprint).eq.0) write (*,900) neval,hstst,(pstst(j),j=1,nop)
!
! IF HSTST < HMIN REPLACE CURRENT MAXIMUM POINT BY PSTST AND
! HMAX BY HSTST, THEN TEST FOR CONVERGENCE.
!
180 if (hstst.ge.hmin) go to 300
do 190 i=1,nop
if (step(i).ne.zero) g(imax,i)=pstst(i)
190 continue
h(imax)=hstst
go to 320
!
! HSTAR IS NOT < HMIN.
! TEST WHETHER IT IS < FUNCTION VALUE AT SOME POINT OTHER THAN
! P(IMAX). IF IT IS REPLACE P(IMAX) BY PSTAR & HMAX BY HSTAR.
!
200 do 210 i=1,np1
if (i.eq.imax) go to 210
if (hstar.lt.h(i)) go to 300
210 continue
!
! HSTAR > ALL FUNCTION VALUES EXCEPT POSSIBLY HMAX.
! IF HSTAR <= HMAX, REPLACE P(IMAX) BY PSTAR & HMAX BY HSTAR.
!
if (hstar.gt.hmax) go to 230
do 220 i=1,nop
if (step(i).ne.zero) g(imax,i)=pstar(i)
220 continue
hmax=hstar
h(imax)=hstar
!
! CONTRACTED STEP TO THE POINT PSTST,
! HSTST = FUNCTION VALUE AT PSTST.
!
230 do 240 i=1,nop
240 pstst(i)=b*g(imax,i)+(1.d0-b)*pbar(i)
call functn (pstst,hstst,nop)
neval=neval+1
if (iprint.le.0) go to 250
if (mod(neval,iprint).eq.0) write (lout,890) neval,hstst,(pstst(j),j=1,nop)
if (mod(neval,iprint).eq.0) write (*,900) neval,hstst,(pstst(j),j=1,nop)
!
! IF HSTST < HMAX REPLACE P(IMAX) BY PSTST & HMAX BY HSTST.
!
250 if (hstst.gt.hmax) go to 270
do 260 i=1,nop
if (step(i).ne.zero) g(imax,i)=pstst(i)
260 continue
h(imax)=hstst
go to 320
!
! HSTST > HMAX.
! SHRINK THE SIMPLEX BY REPLACING EACH POINT, OTHER THAN THE CURRENT
! MINIMUM, BY A POINT MID-WAY BETWEEN ITS CURRENT POSITION AND THE
! MINIMUM.
!
270 do 290 i=1,np1
if (i.eq.imin) go to 290
do 280 j=1,nop
if (step(j).ne.zero) g(i,j)=(g(i,j)+g(imin,j))*half
p(j)=g(i,j)
280 continue
call functn (p,h(i),nop)
neval=neval+1
if (iprint.le.0) go to 290
if (mod(neval,iprint).eq.0) write (lout,890) neval,h(i),(p(j),j=1,nop)
if (mod(neval,iprint).eq.0) write (*,900) neval,h(i),(p(j),j=1,nop)
290 continue
go to 320
!
! REPLACE MAXIMUM POINT BY PSTAR & H(IMAX) BY HSTAR.
!
300 do 310 i=1,nop
if (step(i).ne.zero) g(imax,i)=pstar(i)
310 continue
h(imax)=hstar
!
! IF LOOP = NLOOP TEST FOR CONVERGENCE, OTHERWISE REPEAT MAIN CYCLE.
!
320 if (loop.lt.nloop) go to 80
!
! CALCULATE MEAN & STANDARD DEVIATION OF FUNCTION VALUES FOR THE
! CURRENT SIMPLEX.
!
hstd=zero
hmean=zero
do 330 i=1,np1
330 hmean=hmean+h(i)
fnp1=np1
hmean=hmean/fnp1
do 340 i=1,np1
340 hstd=hstd+(h(i)-hmean)**2
hstd=dsqrt(hstd/dble(np1))
!
! IF THE RMS > STOPCR, SET IFLAG & LOOP TO ZERO AND GO TO THE
! START OF THE MAIN CYCLE AGAIN.
!
if (hstd.le.stopcr.or.neval.gt.max) go to 350
iflag=0
loop=0
go to 80
!
! FIND THE CENTROID OF THE CURRENT SIMPLEX AND THE FUNCTION VALUE TH
!
350 do 370 i=1,nop
if (step(i).eq.zero) go to 370
p(i)=zero
do 360 j=1,np1
360 p(i)=p(i)+g(j,i)
fnp1=np1
p(i)=p(i)/fnp1
370 continue
call functn (p,func,nop)
neval=neval+1
if (iprint.le.0) go to 380
if (mod(neval,iprint).eq.0) write (lout,890) neval,func,(p(j),j=1,nop)
if (mod(neval,iprint).eq.0) write (*,900) neval,func,(p(j),j=1,nop)
!
! TEST WHETHER THE NO. OF FUNCTION VALUES ALLOWED, MAX, HAS BEEN
! OVERRUN; IF SO, EXIT WITH IFAULT = 1.
!
380 if (neval.le.max) go to 390
ifault=1
if (iprint.lt.0) return
write (lout,910) max
write (lout,920) hstd
write (lout,930) (p(i),i=1,nop)
write (lout,940) func
! folling line added by Clay Porch, 7/15/96
goto 430
! return
!
! CONVERGENCE CRITERION SATISFIED.
! IF IFLAG = 0, SET IFLAG & SAVE HMEAN.
! IF IFLAG = 1 & CHANGE IN HMEAN <= STOPCR THEN SEARCH IS COMPLETE.
!
390 if (iprint.lt.0) go to 400
write (lout,950)
write (lout,930) (p(i),i=1,nop)
write (lout,940) func
400 if (iflag.gt.0) go to 420
iflag=1
410 savemn=hmean
loop=0
go to 80
420 if (abs(savemn-hmean).ge.stopcr) go to 410
if (iprint.lt.0) go to 430
write (lout,960) neval
write (lout,970) (p(i),i=1,nop)
write (lout,980) func
430 if (iquad.le.0) return
!-----------------------------------------------------------------
!
! QUADRATIC SURFACE FITTING
!
if (iprint.ge.0) write (lout,990)
!
! EXPAND THE FINAL SIMPLEX, IF NECESSARY, TO OVERCOME ROUNDING
! ERRORS.
!
neval=0
do 460 i=1,np1
440 test=abs(h(i)-func)
if (test.ge.simp) go to 460
do 450 j=1,nop
if (step(j).ne.zero) g(i,j)=(g(i,j)-p(j))+g(i,j)
pstst(j)=g(i,j)
450 continue
call functn (pstst,h(i),nop)
neval=neval+1
go to 440
460 continue
!
! FUNCTION VALUES ARE CALCULATED AT AN ADDITIONAL NAP POINTS.
!
do 480 i=1,nap
i1=i+1
do 470 j=1,nop
470 pstar(j)=(g(1,j)+g(i1,j))*half
call functn (pstar,aval(i),nop)
neval=neval+1
480 continue
!
! THE MATRIX OF ESTIMATED SECOND DERIVATIVES IS CALCULATED AND ITS
! LOWER TRIANGLE STORED IN BMAT.
!
a0=h(1)
do 510 i=1,nap
i1=i-1
i2=i+1
if (i1.lt.1) go to 510
do 500 j=1,i1
j1=j+1
do 490 k=1,nop
490 pstst(k)=(g(i2,k)+g(j1,k))*half
call functn (pstst,hstst,nop)
neval=neval+1
l=i*(i-1)/2+j
bmat(l)=two*(hstst+a0-aval(i)-aval(j))
500 continue
510 continue
l=0
do 520 i=1,nap
i1=i+1
l=l+i
bmat(l)=two*(h(i1)+a0-two*aval(i))
520 continue
!
! THE VECTOR OF ESTIMATED FIRST DERIVATIVES IS CALCULATED AND
! STORED IN AVAL.
!
do 530 i=1,nap
i1=i+1
aval(i)=two*aval(i)-(h(i1)+three*a0)*half
530 continue
!
! THE MATRIX Q OF NELDER & MEAD IS CALCULATED AND STORED IN G.
!
do 540 i=1,nop
540 pmin(i)=g(1,i)
do 550 i=1,nap
i1=i+1
do 550 j=1,nop
g(i1,j)=g(i1,j)-g(1,j)
550 continue
do 560 i=1,nap
i1=i+1
do 560 j=1,nop
g(i,j)=g(i1,j)
560 continue
!
! INVERT BMAT
!
call syminv (bmat,nap,bmat,temp,nullty,ifault,rmax)
if (ifault.ne.0) go to 570
irank=nap-nullty
go to 580
570 if (iprint.ge.0) write (lout,1000)
ifault=2
return
!
! BMAT*A/2 IS CALCULATED AND STORED IN H.
!
580 do 620 i=1,nap
h(i)=zero
do 610 j=1,nap
if (j.gt.i) go to 590
l=i*(i-1)/2+j
go to 600
590 l=j*(j-1)/2+i
600 h(i)=h(i)+bmat(l)*aval(j)
610 continue
620 continue
!
! FIND THE POSITION, PMIN, & VALUE, YMIN, OF THE MINIMUM OF THE
! QUADRATIC.
!
ymin=zero
do 630 i=1,nap
630 ymin=ymin+h(i)*aval(i)
ymin=a0-ymin
do 640 i=1,nop
pstst(i)=zero
do 640 j=1,nap
640 pstst(i)=pstst(i)+h(j)*g(j,i)
do 650 i=1,nop
650 pmin(i)=pmin(i)-pstst(i)
if (iprint.lt.0) go to 660
write (lout,1010) ymin,(pmin(i),i=1,nop)
write (lout,1020)
!
! Calculate true function value at the minimum of the quadratic.
!
660 neval=neval+1
call functn (pmin,hstar,nop)
!
! If HSTAR < FUNC, replace search minimum with quadratic minimum.
!
if (hstar.ge.func) go to 680
func=hstar
do 670 i=1,nop
670 p(i)=pmin(i)
write (lout,1030) func
!
! Q*BMAT*Q'/2 IS CALCULATED & ITS LOWER TRIANGLE STORED IN VC
!
680 do 750 i=1,nop
do 720 j=1,nap
h(j)=zero
do 710 k=1,nap
if (k.gt.j) go to 690
l=j*(j-1)/2+k
go to 700
690 l=k*(k-1)/2+j
700 h(j)=h(j)+bmat(l)*g(k,i)*half
710 continue
720 continue
do 740 j=i,nop
l=j*(j-1)/2+i
vc(l)=zero
do 730 k=1,nap
730 vc(l)=vc(l)+h(k)*g(k,j)
740 continue
750 continue
!
! THE DIAGONAL ELEMENTS OF VC ARE COPIED INTO VAR.
!
j=0
do 760 i=1,nop
j=j+i
var(i)=vc(j)
760 continue
if (iprint.lt.0) return
write (lout,1040) irank
ijk=1
go to 830
770 continue
write (lout,1050)
call syminv (vc,nap,bmat,temp,nullty,ifault,rmax)
!
! BMAT NOW CONTAINS THE INFORMATION MATRIX
!
write (lout,1060)
ijk=3
go to 830
!
! Calculate correlations of parameter estimates, put into VC.
!
780 ijk=2
ii=0
ij=0
do 800 i=1,nop
ii=ii+i
if (vc(ii).gt.zero) then
vc(ii)=one/sqrt(vc(ii))
else
vc(ii)=zero
end if
jj=0
do 790 j=1,i-1
jj=jj+j
ij=ij+1
vc(ij)=vc(ij)*vc(ii)*vc(jj)
790 continue
ij=ij+1
800 continue
write (lout,1070)
write (lout,1071) (ii,ii=1,nop)
ii=0
do 810 i=1,nop
ii=ii+i
if (vc(ii).ne.zero) vc(ii)=one
810 continue
go to 830
820 write (lout,1080) neval
return
!
! Pseudo-subroutine to print VC if IJK = 1 or 2, or
! BMAT if IJK = 3.
!
830 l=1
840 if (l.gt.nop) go to (770,820,780),ijk
ii=l*(l-1)/2
do 860 i=l,nop
i1=ii+l
ii=ii+i
i2=min(ii,i1+19)
if (ijk.eq.3) go to 850
write (lout,1090) i,(vc(j),j=i1,i2)
go to 860
850 write (lout,1091) i,(bmat(j),j=i1,i2)
860 continue
write (lout,1100)
l=l+20
go to 840
870 format (' PROGRESS REPORT EVERY',i4,' FUNCTION EVALUATIONS',/,' EVAL. FUNC.',15x,'PARAMETER VALUES')
880 format (' EVAL. FUNC.',15x,'PARAMETER VALUES')
890 format (/1x,i6,2x,g12.5,2x,5g12.5,3(/20x,5g12.5))
900 format (1x,i6,2x,g12.5,2x,5g12.5,3(/20x,5g12.5))
910 format (' NO. OF FUNCTION EVALUATIONS EXCEEDS',i5)
920 format (' RMS OF FUNCTION VALUES OF LAST SIMPLEX =',g14.6)
930 format (' CENTROID OF LAST SIMPLEX =',4(/1x,6g13.5))
940 format (' FUNCTION VALUE AT CENTROID =',g14.6)
950 format (/' EVIDENCE OF CONVERGENCE')
960 format (//' MINIMUM FOUND AFTER',i5,' FUNCTION EVALUATIONS')
970 format (' MINIMUM AT',4(/1x,6g13.6))
980 format (' FUNCTION VALUE AT MINIMUM =',g14.6)
990 format (/' QUADRATIC SURFACE FITTING ABOUT SUPPOSED MINIMUM'/)
1000 format (/' MATRIX OF ESTIMATED SECOND DERIVATIVES NOT +VE DEFN.'/'MINIMUM PROBABLY NOT FOUND'/)
1010 format (' MINIMUM OF QUADRATIC SURFACE =',g14.6,' AT',4(/1x,6g13.5))
1020 format (' IF THIS DIFFERS BY MUCH FROM THE MINIMUM ESTIMATED',1x, &
'FROM THE MINIMIZATION',/,' THE MINIMUM MAY BE FALSE OR THE INFORMATION MATRIX MAY BE',1x,'INACCURATE')
1030 format (' True func. value at minimum of quadratic = ',g14.6/)
1040 format (' RANK OF INFORMATION MATRIX =',i3/,' GENERALIZED INVERSE OF INFORMATION MATRIX:-')
1050 format (/,' IF THE FUNCTION MINIMIZED WAS -LOG(LIKELIHOOD)',/,' THIS IS THE COVARIANCE MATRIX OF THE PARAMETERS',/, &
'IF THE FUNCTION WAS A SUM OF SQUARES OF RESIDUALS',/,' THIS MATRIX MUST BE MULTIPLIED BY TWICE THE ESTIMATED', &
1x,'RESIDUAL VARIANCE',/,' TO OBTAIN THE COVARIANCE MATRIX.')
1060 format (' INFORMATION MATRIX:-'/)
1070 format (/' CORRELATION MATRIX:-')
1071 format (7x,20i6)
1080 format (/' A FURTHER',i4,' FUNCTION EVALUATIONS HAVE BEEN USED'/)
1090 format (1x,i4,2x,20f13.4)
1091 format (1x,i4,2x,20f6.4)
1100 format (/)
end
!---------------------------------------------------------------
subroutine syminv (a,n,c,w,nullty,ifault,rmax)
!---------------------------------------------------------------
!
! ALGORITHM AS7, APPLIED STATISTICS, VOL.17, 1968.
!
! ARGUMENTS:-
! A() = INPUT, THE SYMMETRIC MATRIX TO BE INVERTED, STORED IN
! LOWER TRIANGULAR FORM
! N = INPUT, ORDER OF THE MATRIX
! C() = OUTPUT, THE INVERSE OF A (A GENERALIZED INVERSE IF C IS
! SINGULAR), ALSO STORED IN LOWER TRIANGULAR.
! C AND A MAY OCCUPY THE SAME LOCATIONS.
! W() = WORKSPACE, DIMENSION AT LEAST N.
! NULLTY = OUTPUT, THE RANK DEFICIENCY OF A.
! IFAULT = OUTPUT, ERROR INDICATOR
! = 1 IF N < 1
! = 2 IF A IS NOT +VE SEMI-DEFINITE
! = 0 OTHERWISE
! RMAX = OUTPUT, APPROXIMATE BOUND ON THE ACCURACY OF THE DIAGONA
! ELEMENTS OF C. E.G. IF RMAX = 1.E-04 THEN THE DIAGONAL
! ELEMENTS OF C WILL BE ACCURATE TO ABOUT 4 DEC. DIGITS.
!
! LATEST REVISION - 18 October 1985
!
!***********************************************************************
!
implicit double precision (a-h,o-z)
dimension a(*), c(*), w(n)
data zero/0.d0/,one/1.d0/
!
nrow=n
ifault=1
if (nrow.le.0) go to 90
ifault=0
!
! CHOLESKY FACTORIZATION OF A, RESULT IN C
!
call chola (a,nrow,c,nullty,ifault,rmax,w)
if (ifault.ne.0) go to 90
!
! INVERT C & FORM THE PRODUCT (CINV)'*CINV, WHERE CINV IS THE INVERS
! OF C, ROW BY ROW STARTING WITH THE LAST ROW.
! IROW = THE ROW NUMBER, NDIAG = LOCATION OF LAST ELEMENT IN THE ROW
!
nn=nrow*(nrow+1)/2
irow=nrow
ndiag=nn
10 if (c(ndiag).eq.zero) go to 60
l=ndiag
do 20 i=irow,nrow
w(i)=c(l)
l=l+i
20 continue
icol=nrow
jcol=nn
mdiag=nn
30 l=jcol
x=zero
if (icol.eq.irow) x=one/w(irow)
k=nrow
40 if (k.eq.irow) go to 50
x=x-w(k)*c(l)
k=k-1
l=l-1
if (l.gt.mdiag) l=l-k+1
go to 40
50 c(l)=x/w(irow)
if (icol.eq.irow) go to 80
mdiag=mdiag-icol
icol=icol-1
jcol=jcol-1
go to 30
!
! Special case, zero diagonal element.
!
60 l=ndiag
do 70 j=irow,nrow
c(l)=zero
l=l+j
70 continue
!
! End of row.
!
80 ndiag=ndiag-irow
irow=irow-1
if (irow.ne.0) go to 10
90 return
end
!-----------------------------------------------------------------------------
subroutine chola (a,n,u,nullty,ifault,rmax,r)
!-----------------------------------------------------------------------------
!
! ALGORITHM AS6, APPLIED STATISTICS, VOL.17, 1968, WITH
! MODIFICATIONS BY A.J.MILLER
!
! ARGUMENTS:-
! A() = INPUT, A +VE DEFINITE MATRIX STORED IN LOWER-TRIANGULAR
! FORM.
! N = INPUT, THE ORDER OF A
! U() = OUTPUT, A LOWER TRIANGULAR MATRIX SUCH THAT U*U' = A.
! A & U MAY OCCUPY THE SAME LOCATIONS.
! NULLTY = OUTPUT, THE RANK DEFICIENCY OF A.
! IFAULT = OUTPUT, ERROR INDICATOR
! = 1 IF N < 1
! = 2 IF A IS NOT +VE SEMI-DEFINITE
! = 0 OTHERWISE
! RMAX = OUTPUT, AN ESTIMATE OF THE RELATIVE ACCURACY OF THE
! DIAGONAL ELEMENTS OF U.
! R() = OUTPUT, ARRAY CONTAINING BOUNDS ON THE RELATIVE ACCURACY
! OF EACH DIAGONAL ELEMENT OF U.
!
! LATEST REVISION - 18 October 1985
!
!***********************************************************************
!
implicit double precision (a-h,o-z)
dimension a(*), u(*), r(n)
!
! ETA SHOULD BE SET EQUAL TO THE SMALLEST +VE VALUE SUCH THAT
! 1.0 + ETA IS CALCULATED AS BEING GREATER THAN 1.0 IN THE ACCURACY
! BEING USED.
!
data eta/1.d-16/,zero/0.d0/,five/5.d0/,tiny/1.d-20/
!
ifault=1
if (n.le.0) go to 90
ifault=2
nullty=0
rmax=eta
r(1)=eta
j=1
k=0
!
! FACTORIZE COLUMN BY COLUMN, ICOL = COLUMN NO.
!
do 80 icol=1,n
l=0
!
! IROW = ROW NUMBER WITHIN COLUMN ICOL
!
do 40 irow=1,icol
k=k+1
w=a(k)
if (irow.eq.icol) rsq=(w*eta)**2
m=j
do 10 i=1,irow
l=l+1
if (i.eq.irow) go to 20
w=w-u(l)*u(m)
if (irow.eq.icol) rsq=rsq+(u(l)**2*r(i))**2
m=m+1
10 continue
20 if (irow.eq.icol) go to 50
if (u(l).eq.zero) go to 30
u(k)=w/u(l)
go to 40
30 u(k)=zero
if (abs(w).gt.abs(rmax*a(k))) go to 90
40 continue
!
! END OF ROW, ESTIMATE RELATIVE ACCURACY OF DIAGONAL ELEMENT.
!
50 rsq=sqrt(rsq)
if (abs(w).le.five*rsq) go to 60
if (w.lt.zero) w=tiny
u(k)=sqrt(w)
r(i)=rsq/w
if (r(i).gt.rmax) rmax=r(i)
go to 70
60 u(k)=zero
nullty=nullty+1
70 j=j+icol
80 continue
ifault=0
!
90 return
end
|
63b73d62ef776cd14b8b5f285bfc0d4677315b4d | 81e04bcb675b9b268042b989466c04061dba5dde | /hardware/samsung_slsi/slsiap/camera/NXCameraHWInterface2.cpp | a4d816dc215e6c989a5733017cab7e4dfd64e453 | [] | no_license | ddanggzi/3d_glass | e4f0c1191b1e6d269d31e6d565ba2acbc6f6758f | 8f4dc0034521aded944fd8c97698f036bc0bca73 | refs/heads/master | 2022-11-29T22:43:36.822017 | 2017-02-22T01:50:11 | 2017-02-22T01:50:11 | 78,256,189 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 15,985 | cpp | NXCameraHWInterface2.cpp | #define LOG_TAG "NexellCameraHAL2"
#include <utils/Log.h>
#include <ion/ion.h>
#include <android-nxp-v4l2.h>
#include <nxp-v4l2.h>
#include <gralloc_priv.h>
#include <NXCpu.h>
#include <NXTrace.h>
#include "NXStreamThread.h"
#include "NXCameraHWInterface2.h"
// #define TRACE
#ifdef TRACE
#define trace() NXTrace t(__func__)
#else
#define trace()
#endif
#define getPriv(dev) ((NXCameraHWInterface2 *)(device->priv))
namespace android {
static NXCameraSensor *g_sensor[2] = {NULL, NULL};
static camera_metadata_t *g_camera_info[2] = {NULL, NULL};
//////////////////////////////////////////////////////////////////////////////////
// NXCameraHWInterface2
//
NXCameraHWInterface2::NXCameraHWInterface2(int cameraId, NXCameraSensor *sensor)
: CameraId(cameraId),
Sensor(sensor),
IonFd(-1)
{
}
bool NXCameraHWInterface2::init()
{
trace();
IonFd = ion_open();
if (IonFd < 0) {
ALOGE("failed to ion_open()");
return -1;
}
int ret = hw_get_module(GRALLOC_HARDWARE_MODULE_ID,
(const hw_module_t **)&GrallocHal);
if (ret) {
ALOGE("failed to get Gralloc Module");
return false;
}
StreamManager = new NXStreamManager(this);
return android_nxp_v4l2_init();
}
void NXCameraHWInterface2::release()
{
trace();
if (IonFd >= 0) {
ion_close(IonFd);
IonFd = -1;
}
}
// public interface
int NXCameraHWInterface2::setRequestQueueSrcOps(const camera2_request_queue_src_ops_t *ops)
{
trace();
CommandThread = new NXCommandThread(ops, Sensor);
if (CommandThread == NULL) {
ALOGE("failed to create NXCommandThread!!!");
return NO_MEMORY;
}
NXCommandThread *cthread = CommandThread.get();
cthread->run();
return 0;
}
int NXCameraHWInterface2::notifyRequestQueueNotEmpty()
{
trace();
if (CommandThread != NULL) {
ALOGD("notifyRequestQueueNotEmpty");
NXCommandThread *cthread = CommandThread.get();
cthread->wakeup();
} else {
ALOGE("CommandThread is NULL!!!");
}
return 0;
}
int NXCameraHWInterface2::setFrameQueueDstOps(const camera2_frame_queue_dst_ops_t *ops)
{
trace();
FrameQueueDstOps = ops;
return 0;
}
int NXCameraHWInterface2::getInProgressCount()
{
trace();
return 0;
}
int NXCameraHWInterface2::flushCapturesInProgress()
{
trace();
return 0;
}
int NXCameraHWInterface2::constructDefaultRequest(int requestTemplate, camera_metadata_t **request)
{
trace();
if (request == NULL) {
ALOGE("%s: request is NULL!!!", __func__);
return BAD_VALUE;
}
if (requestTemplate < 0 || requestTemplate >= CAMERA2_TEMPLATE_COUNT) {
ALOGE("%s: invalid requestTemplate(%d)", __func__, requestTemplate);
return BAD_VALUE;
}
status_t res;
res = Sensor->constructDefaultRequest(requestTemplate, request, true);
if (res != OK) {
ALOGE("%s: first call sensor constructDefaultRequest failed", __func__);
return res;
}
res = Sensor->constructDefaultRequest(requestTemplate, request, false);
if (res != OK) {
ALOGE("%s: second call sensor constructDefaultRequest failed", __func__);
return res;
}
return OK;
}
int NXCameraHWInterface2::allocateStream(uint32_t width, uint32_t height, int format, const camera2_stream_ops_t *streamOps,
uint32_t *streamId, uint32_t *formatActual, uint32_t *usage, uint32_t *maxBuffers)
{
trace();
if (CommandThread == NULL) {
ALOGE("CommanThread is not exist!!!");
return NO_INIT;
}
if(!Sensor->isSupportedResolution(width, height)) {
ALOGE("%dx%d is not supported!!!", width, height);
return INVALID_OPERATION;
}
// #ifdef ARCH_S5P6818
// bool useSensorZoom = true;
// #else
bool useSensorZoom = false;
if (Sensor->getZoomFactor() > 1)
useSensorZoom = true;
// #endif
int ret = StreamManager->allocateStream(width, height, format, streamOps, streamId, formatActual, usage, maxBuffers, useSensorZoom);
if (ret != NO_ERROR) {
ALOGE("failed to allocateStream(error: %d)", ret);
return ret;
}
sp<NXStreamThread> spStreamThread(StreamManager->getStreamThread(*streamId));
if (NO_ERROR != CommandThread->registerListener(*streamId, spStreamThread)) {
ALOGE("failed to registerListener record stream to command thread");
return NO_INIT;
}
return 0;
}
int NXCameraHWInterface2::registerStreamBuffers(uint32_t streamId, int numBuffers, buffer_handle_t *buffers)
{
trace();
NXStreamThread *streamThread = StreamManager->getStreamThread(streamId);
if (!streamThread) {
ALOGE("can't get streamThread for %d", streamId);
return NO_INIT;
}
return streamThread->registerStreamBuffers(streamId, numBuffers, buffers);
}
int NXCameraHWInterface2::releaseStream(uint32_t streamId)
{
trace();
ALOGD("%s: id %d", __func__, streamId);
if (streamId == STREAM_ID_INVALID) {
ALOGE("can't releaseStream invalid");
return 0;
}
NXStreamThread *streamThread = StreamManager->getStreamThread(streamId);
if (!streamThread) {
ALOGE("can't get streamThread for %d", streamId);
return NO_INIT;
}
CommandThread->removeListener(streamId);
if (streamThread->getActiveStreamId() == STREAM_ID_CALLBACK)
streamThread->stop(true, false);
else
streamThread->stop(true);
streamThread->removeStream(streamId);
if (!streamThread->getStreamCount()) {
streamThread->release();
StreamManager->removeStream(streamId);
}
return 0;
}
int NXCameraHWInterface2::allocateReprocessStream(uint32_t width, uint32_t height, uint32_t format,
const camera2_stream_in_ops_t *ops,
uint32_t *streamId, uint32_t *consumerUsage, uint32_t *maxBuffers)
{
trace();
return 0;
}
int NXCameraHWInterface2::allocateReprocessStreamFromStream(uint32_t outputStreamId,
const camera2_stream_in_ops_t *ops,
uint32_t *streamId)
{
trace();
ALOGD("output stream id(%d)", outputStreamId);
*streamId = STREAM_ID_REPROCESS;
StreamInOps = ops;
ReprocessStreamId = *streamId;
ReprocessStreamOutputId = outputStreamId;
return 0;
}
int NXCameraHWInterface2::releaseReprocessStream(uint32_t streamId)
{
trace();
return 0;
}
int NXCameraHWInterface2::triggerAction(uint32_t triggerId, uint32_t ext1, uint32_t ext2)
{
trace();
if (SensorThread != NULL) {
ALOGD("triggerId %d, ext1 %d, ext2 %d", triggerId, ext1, ext2);
SensorThread->sendMessage(new NXSensorMessage(triggerId, ext1, ext2));
}
return 0;
}
int NXCameraHWInterface2::setNotifyCallback(camera2_notify_callback cb, void *user)
{
trace();
NotifyCb = cb;
CallbackCookie = user;
if (SensorThread == NULL && user != NULL) {
SensorThread = new NXSensorThread(cb, user, Sensor);
if (SensorThread == NULL) {
ALOGE("can't create SensorThread!!!");
return NO_MEMORY;
}
SensorThread->run();
}
return 0;
}
int NXCameraHWInterface2::getMetadataVendorTagOps(vendor_tag_query_ops_t **ops)
{
trace();
*ops = NULL;
return 0;
}
int NXCameraHWInterface2::dump(int fd)
{
trace();
return 0;
}
//////////////////////////////////////////////////////////////////////////////////
// camera2_device_ops
//
static int set_request_queue_src_ops(const struct camera2_device *device,
const camera2_request_queue_src_ops_t *request_src_ops)
{
trace();
return getPriv(device)->setRequestQueueSrcOps(request_src_ops);
}
static int notify_request_queue_not_empty(const struct camera2_device *device)
{
trace();
return getPriv(device)->notifyRequestQueueNotEmpty();
}
static int set_frame_queue_dst_ops(const struct camera2_device *device,
const camera2_frame_queue_dst_ops_t *frame_dst_ops)
{
trace();
return getPriv(device)->setFrameQueueDstOps(frame_dst_ops);
}
static int get_in_progress_count(const struct camera2_device *device)
{
trace();
return getPriv(device)->getInProgressCount();
}
static int flush_captures_in_progress(const struct camera2_device *device)
{
trace();
return getPriv(device)->flushCapturesInProgress();
}
static int construct_default_request(const struct camera2_device *device,
int request_template, camera_metadata_t **request)
{
trace();
return getPriv(device)->constructDefaultRequest(request_template, request);
}
static int allocate_stream(
const struct camera2_device *device,
// inputs
uint32_t width,
uint32_t height,
int format,
const camera2_stream_ops_t *stream_ops,
// outputs
uint32_t *stream_id,
uint32_t *format_actual,
uint32_t *usage,
uint32_t *max_buffers)
{
trace();
return getPriv(device)->allocateStream(width, height, format, stream_ops,
stream_id, format_actual, usage, max_buffers);
}
static int register_stream_buffers(
const struct camera2_device *device,
uint32_t stream_id,
int num_buffers,
buffer_handle_t *buffers)
{
trace();
return getPriv(device)->registerStreamBuffers(stream_id, num_buffers, buffers);
}
static int release_stream(
const struct camera2_device *device,
uint32_t stream_id)
{
trace();
return getPriv(device)->releaseStream(stream_id);
}
static int allocate_reprocess_stream(const struct camera2_device *device,
uint32_t width,
uint32_t height,
uint32_t format,
const camera2_stream_in_ops_t *reprocess_stream_ops,
// outputs
uint32_t *stream_id,
uint32_t *consumer_usage,
uint32_t *max_buffers)
{
trace();
return getPriv(device)->allocateReprocessStream(width, height, format, reprocess_stream_ops,
stream_id, consumer_usage, max_buffers);
}
static int allocate_reprocess_stream_from_stream(const struct camera2_device *device,
uint32_t output_stream_id,
const camera2_stream_in_ops_t *reprocess_stream_ops,
// outputs
uint32_t *stream_id)
{
trace();
return getPriv(device)->allocateReprocessStreamFromStream(output_stream_id,
reprocess_stream_ops, stream_id);
}
static int release_reprocess_stream(
const struct camera2_device *device,
uint32_t stream_id)
{
trace();
return getPriv(device)->releaseReprocessStream(stream_id);
}
static int trigger_action(const struct camera2_device *device,
uint32_t trigger_id,
int32_t ext1,
int32_t ext2)
{
trace();
return getPriv(device)->triggerAction(trigger_id, ext1, ext2);
}
static int set_notify_callback(const struct camera2_device *device,
camera2_notify_callback notify_cb,
void *user)
{
trace();
return getPriv(device)->setNotifyCallback(notify_cb, user);
}
static int get_metadata_vendor_tag_ops(const struct camera2_device *device,
vendor_tag_query_ops_t **ops)
{
trace();
return getPriv(device)->getMetadataVendorTagOps(ops);
}
static int dump(const struct camera2_device *device, int fd)
{
trace();
return getPriv(device)->dump(fd);
}
static camera2_device_ops_t camera2_device_ops = {
set_request_queue_src_ops: set_request_queue_src_ops,
notify_request_queue_not_empty: notify_request_queue_not_empty,
set_frame_queue_dst_ops: set_frame_queue_dst_ops,
get_in_progress_count: get_in_progress_count,
flush_captures_in_progress: flush_captures_in_progress,
construct_default_request: construct_default_request,
allocate_stream: allocate_stream,
register_stream_buffers: register_stream_buffers,
release_stream: release_stream,
allocate_reprocess_stream: allocate_reprocess_stream,
allocate_reprocess_stream_from_stream: allocate_reprocess_stream_from_stream,
release_reprocess_stream: release_reprocess_stream,
trigger_action: trigger_action,
set_notify_callback: set_notify_callback,
get_metadata_vendor_tag_ops: get_metadata_vendor_tag_ops,
dump: dump,
};
//////////////////////////////////////////////////////////////////////////////////
// HAL2 interface
//
static int get_number_of_cameras()
{
return get_board_number_of_cameras();
}
static int get_camera_info(int cameraId, struct camera_info *info)
{
int cameraCount = get_number_of_cameras();
if (cameraId >= cameraCount) {
ALOGE("%s: invalid cameraId(%d)", __func__, cameraId);
return BAD_VALUE;
}
if (cameraCount == 2 && cameraId == 1) {
// TODO
info->facing = CAMERA_FACING_FRONT;
if (!g_sensor[1]) {
g_sensor[1] = new NXCameraSensor(1);
}
} else {
info->facing = CAMERA_FACING_BACK;
if (!g_sensor[0]) {
g_sensor[0] = new NXCameraSensor(0);
}
}
info->orientation = get_board_camera_orientation(cameraId);
info->device_version = HARDWARE_DEVICE_API_VERSION(2, 0);
status_t res;
if (g_camera_info[cameraId] == NULL) {
res = g_sensor[cameraId]->constructStaticInfo(&g_camera_info[cameraId], cameraId, true);
if (res != OK) {
ALOGE("%s: Unable to allocate static info: %s (%d)", __func__, strerror(-res), res);
return res;
}
res = g_sensor[cameraId]->constructStaticInfo(&g_camera_info[cameraId], cameraId, false);
if (res != OK) {
ALOGE("%s: Unable to fill in static info: %s (%d)", __func__, strerror(-res), res);
return res;
}
}
info->static_camera_characteristics = g_camera_info[cameraId];
return NO_ERROR;
}
static int camera_device_close(struct hw_device_t *device)
{
trace();
camera2_device_t *dev = (camera2_device_t *)device;
NXCameraHWInterface2 *priv = static_cast<NXCameraHWInterface2 *>(dev->priv);
priv->release();
delete priv;
delete dev;
return 0;
}
static int camera_device_open(const struct hw_module_t *module,
const char *id,
struct hw_device_t **device)
{
trace();
int cameraId = atoi(id);
camera2_device_t *dev = new camera2_device_t;
dev->common.tag = HARDWARE_DEVICE_TAG;
dev->common.version = CAMERA_DEVICE_API_VERSION_2_0;
dev->common.module = const_cast<hw_module_t *>(module);
dev->common.close = camera_device_close;
dev->ops = &camera2_device_ops;
NXCameraHWInterface2 *hal = new NXCameraHWInterface2(cameraId, g_sensor[cameraId]);
if (!hal) {
ALOGE("can't create NXCameraHWInterface2");
return -ENOMEM;
}
ALOGD("%s: hal %p", __func__, hal);
if (false == hal->init()) {
ALOGE("failed to hal init");
return -EINVAL;
}
dev->priv = hal;
*device = (hw_device_t *)dev;
return 0;
}
static hw_module_methods_t camera_module_methods = {
open : camera_device_open
};
extern "C" {
struct camera_module HAL_MODULE_INFO_SYM = {
common : {
tag : HARDWARE_MODULE_TAG,
module_api_version : CAMERA_MODULE_API_VERSION_2_0,
hal_api_version : HARDWARE_HAL_API_VERSION,
id : CAMERA_HARDWARE_MODULE_ID,
name : "Pyrope Camera HAL2",
author : "Nexell",
methods : &camera_module_methods,
dso : NULL,
reserved : {0},
},
get_number_of_cameras : get_number_of_cameras,
get_camera_info : get_camera_info,
};
}
}; // namespace android
|
f69d4cdfc57ae1c0eabc9bb9e47f5ca44cada2f6 | e1951b7f7a739b96e961797f8849e58dcb41f00d | /falcon/tuple/to_tuple_pointer.hpp | 11b749072d7981050ffb516bf421f65d5c7d891c | [
"MIT"
] | permissive | jonathanpoelen/falcon | fcf2a92441bb2a7fc0c025ff25a197d24611da71 | 5b60a39787eedf15b801d83384193a05efd41a89 | refs/heads/master | 2021-01-17T10:21:17.492484 | 2016-03-27T23:28:50 | 2016-03-27T23:28:50 | 6,459,776 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,254 | hpp | to_tuple_pointer.hpp | #ifndef FALCON_TUPLE_TO_TUPLE_POINTER_HPP
#define FALCON_TUPLE_TO_TUPLE_POINTER_HPP
#include <falcon/tuple/parameter_index.hpp>
#include <falcon/tuple/build_tuple_pointer.hpp>
# include <tuple>
namespace falcon {
using std::get;
/// Pointer tuple element
template <typename T, std::size_t... Indexes>
typename build_tuple_const_pointer<
T, parameter_index<Indexes...>
>::type
to_tuple_pointer(parameter_index<Indexes...>, const T & t)
{
return build_tuple_const_pointer_t<
T, parameter_index<Indexes...>
>(&get<Indexes>(t)...);
}
/// Pointer tuple element
template <typename T, std::size_t... Indexes>
typename build_tuple_pointer<
T, parameter_index<Indexes...>
>::type
to_tuple_pointer(parameter_index<Indexes...>, T& t)
{
return build_tuple_pointer_t<
T, parameter_index<Indexes...>
>(&get<Indexes>(t)...);
}
/// Pointer tuple element
template <typename T>
typename build_tuple_const_pointer<
T, build_tuple_index_t<T>
>::type
to_tuple_pointer(const T& t)
{ return to_tuple_pointer(build_tuple_index_t<T>(), t); }
/// Pointer tuple element
template <typename T>
typename build_tuple_pointer<
T, build_tuple_index_t<T>
>::type
to_tuple_pointer(T& t)
{ return to_tuple_pointer(build_tuple_index_t<T>(), t); }
}
#endif
|
60f217c53e4bef07ef08df4955edab5218803837 | 1a283ec7b87dc77b86637baf9d99382127f42059 | /HDU_1062.cpp | cad1c741115e216084dff854f22a9a5a067dd27c | [] | no_license | he1l0world/Acm-trainning | c185ebae4498ce07529be044ec994d2c2826094b | acd6273eade71d50455e0c579744655cfa0a0851 | refs/heads/master | 2021-09-20T21:52:40.713255 | 2018-08-15T23:10:10 | 2018-08-15T23:10:10 | 111,166,844 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 850 | cpp | HDU_1062.cpp | #include<iostream>
#include<string>
#include<algorithm>
using namespace std;
void rev(int begin , int end , string& a)
{
//cout << begin << " " << end << endl;
for(int i = begin,j = end; i <= j ; ++i , --j)
swap(a.at(i), a.at(j));
}
int main ()
{
int n;
string str;
while(cin >> n)
{
cin.get();
for(int i = 0 ; i < n ; ++i)
{
getline(cin , str);
//cout << str;
int begin = 0 , end = 0;
for(int j = 0 ; j < str.length(); ++ j)
if(str.at(j) == ' ' || j == str.length()-1)
{
//最后一个是一个空格
end = j-1;
if(j == str.length()-1 && str.at(j) != ' ')
end = j;
//cout << begin << end <<endl;
rev(begin , end , str);
begin = j+1;
}
cout << str << endl;
}
}
return 0;
}
|
deacb5067c1217dd9c93b3ab8e3ddb9f0f40cfe7 | af8b8a5caef751343f76a8f3bc5b297da6e518c9 | /ClassA.cpp | 3381e977ab898e6ddabea6d0725a2ba4e33e8c32 | [] | no_license | Matery1/Git-Workshop | 296adc5c7d69cf2e9a42c42655a0a795b1511378 | 53d6e1d570a29b7227cc8159250386187d691a80 | refs/heads/master | 2023-01-19T19:36:32.484684 | 2020-11-30T10:59:49 | 2020-11-30T10:59:49 | 315,321,826 | 0 | 0 | null | 2020-11-30T10:52:24 | 2020-11-23T13:20:11 | C++ | UTF-8 | C++ | false | false | 151 | cpp | ClassA.cpp | #include "ClassA.h"
#include <iostream>
ClassA::ClassA()
{
}
void ClassA::printName()
{
std::cout << "My name is Class A, hello you." << std::endl;
} |
aa3be730976d0c2985dfc7dd27a0c58a9d1b7aea | 5d6c9f936d1b78142cd38cd227ba68fc061da444 | /core/clientservice/csvideoprocess.cpp | 04241a47fbf4670e25ebad5563e00a517b3968c4 | [] | no_license | chenxz2016/wm | b02a66320543baa4214538e9b8029a91b7e5a565 | 1e50adf660a779e768a0d78745ecbab75a94deab | refs/heads/master | 2020-03-20T03:37:04.056810 | 2018-07-10T13:06:02 | 2018-07-10T13:06:02 | 137,152,706 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,593 | cpp | csvideoprocess.cpp | #include "csvideoprocess.h"
#include "clientservice.h"
#include "wmp_video.h"
class CSVideoProcessPrivate
{
public:
CSVideoProcessPrivate(CSVideoProcess *parent)
:p(parent)
,timeout(5000)
{}
void init()
{
p->setUniqueID(WMP_PROTO_VIDEO_ID);
}
CSVideoProcess *p;
int timeout;
};
CSVideoProcess::CSVideoProcess(quint32 id,ClientService *parent)
:AbstractCSProcess(parent)
,p_d(new CSVideoProcessPrivate(this))
{
p_d->init();
setUserID(id);
}
CSVideoProcess::~CSVideoProcess()
{
delete p_d;
}
bool CSVideoProcess::syncRecv(wm_parameter_t *param, quint16 param_num)
{
Q_UNUSED(param)
Q_UNUSED(param_num)
return true;
}
bool CSVideoProcess::syncSend(const QVariant &data)
{
QMap<QString,QVariant> map = data.toMap();
bool ok = true;
quint32 dst = map["dst"].toString().toInt(&ok);
if(dst<1000)
{
return false;
}
quint8 attr = map["attr"].toInt();
if(!attr)
{
return true;
}
QByteArray stream = map["stream"].toByteArray();
if(stream.isEmpty())
return false;
/* 2 parameters, user id and user pwd. */
wm_protocol_t *proto = create_wmp(1);
proto->base.proto_type = p_service->protoType();
proto->base.src = p_userID;
proto->base.dst = CS_SERVICE_ID;
p_service->localDevice(proto->base.device);
proto->base.network = p_service->network();
proto->base.time = p_service->time();
p_service->protoVersion(proto->base.version);
wmp_video_t *video = create_wmp_video(stream.length());
proto->body.param->main_id = uniqueID();
proto->body.param->data = reinterpret_cast<char *>(video);
video->src = p_userID;
video->dst = dst;
video->src = p_userID;
memcpy(video->video,stream.data(),stream.length());
bool ret = p_service->sendPackage(proto);
if(!ret)
{
p_error = p_service->error();
return false;
}
return true;
}
void CSVideoProcess::ayncRecv(wm_parameter_t *param, quint16 param_num)
{
Q_UNUSED(param)
Q_UNUSED(param_num)
}
void CSVideoProcess::ayncSend(const QVariant &data)
{
Q_UNUSED(data)
}
void CSVideoProcess::startVideoCall(quint32 dst)
{
Q_UNUSED(dst)
}
void CSVideoProcess::stopVideoCall(quint32 dst)
{
Q_UNUSED(dst)
}
int CSVideoProcess::videoTimeout() const
{
return p_d->timeout;
}
void CSVideoProcess::setVideoTimeout(int timeout)
{
p_d->timeout = timeout;
}
|
6ca5298658a85914a7d2c7364e38b91559e27fcb | a6ef9674622f6e7c46ac31f4cfffbd568ff4f97e | /SteadyState_Rectangular_0_dt2t10000/processor2/6000/omega | fc2d17af00cea17facd7d2cb3561b8583a8082dc | [] | no_license | jhargun/FluidIP | 4c3f6d9a87ed8ce24ed692a9bf939a9ca04222f6 | d6e0f20c1f5e1f86c160497be9d632e6d17abbf7 | refs/heads/master | 2022-08-26T02:34:26.327956 | 2020-05-26T22:33:29 | 2020-05-26T22:33:29 | 266,886,503 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 425,946 | omega | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
location "6000";
object omega;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
dimensions [0 0 -1 0 0 0 0];
internalField nonuniform List<scalar>
33730
(
2180.8584
834.61868
4550.0201
3962.732
1876.6715
7513.6
807.94858
3964.2298
800.25392
673.58145
738.29068
834.47922
2067.6889
828.94031
1262.2484
1271.5694
9542.0785
9529.5427
2023.7656
4697.6249
18971.896
7375.4062
7593.1165
1879.2467
1859.8935
13078.207
12718.816
4360.7362
4426.229
7323.2156
7623.2895
1821.6862
1873.4304
730.43628
668.81802
675.71234
729.57985
1385.8655
1544.6237
1384.1653
1555.8804
562.11762
1866.6712
1866.3046
1879.0503
487.76515
492.5611
2071.057
2091.8214
4907.7826
5018.024
2017.9571
2083.3437
660.36287
654.61552
2024.0132
2074.842
659.97962
2084.7242
2047.5954
655.55935
4677.3564
4770.7038
19077.4
18800.039
4793.7323
4734.5901
18842.795
19131.706
2171.7928
3602.135
3577.5596
6890.6867
6960.7835
13513.382
13430.789
32918.582
33068.716
4313.4584
12735.858
12693.053
4390.4036
12921.852
13210.423
4438.7936
4500.312
21227.001
21354.97
8139.07
8305.4314
20421.693
20954.18
7962.0158
8061.3067
12361.652
12816.626
4201.2413
4319.3264
13128.485
4413.6593
13088.455
4486.1936
3057.0848
3382.7603
1159.9764
1019.2434
1892.7503
1863.8721
1873.8727
1888.6762
1515.3603
1358.1981
1390.41
1544.7704
1569.1991
1403.3669
1399.2455
558.96723
1549.7127
489.26955
1828.5324
1816.0428
1869.9834
1868.7311
3097.9047
3058.9741
3399.393
1148.5829
3437.5002
4102.7274
4051.7273
4268.584
4237.5959
3141.8009
3088.9846
3460.2907
3424.2414
1139.156
4077.9976
4011.952
4209.0847
4262.4507
999.13475
1002.859
4825.8854
4733.5707
4875.879
4690.0128
4868.2688
4777.3189
4762.1352
5241.2285
4728.334
5129.4267
4656.2126
5197.2004
355.47216
418.56712
708.56636
844.08046
832.02572
700.33299
717.06215
856.2119
4983.4913
4894.1231
5111.4962
5015.9754
8807.1394
8957.8364
9005.8549
9239.3478
4736.1929
4899.4252
4981.7008
5082.0639
528.98697
528.1548
685.04995
671.31624
2176.3217
2232.8184
682.25905
2242.8701
2199.1169
675.97592
3581.4287
3590.6755
6880.5142
6893.6882
7034.1032
3664.4119
3678.9891
7001.9958
13531.799
13443.526
33210.228
32941.16
13310.792
13292.192
32301.835
32791.064
3663.2366
3706.6469
7084.573
7016.9293
3639.7011
3628.178
7003.5263
6944.835
13366.774
32958.552
32566.507
13542.313
13589.65
13583.718
33157.772
33177.248
2228.9718
4101.4216
4113.1059
7555.1605
7633.0114
12932.3
13014.878
19015.535
19194.917
12944.792
12832.991
19169.196
18911.319
29818.911
47010.895
30398.774
47506.433
30336.151
29979.066
47764.64
47589.864
7995.9069
20811.638
21062.802
8073.4548
20882.248
20463.813
8019.8296
8088.1823
20927.456
21311.697
8136.1485
8221.3436
21543.034
21653.167
8311.9706
8407.8764
38570.246
37904.763
11836.727
11931.899
38009.829
38601.135
12031.695
12049.677
37035.639
35995.272
11497.214
11589.18
11715.837
37824.756
37546.535
11770.017
19739.336
20403.278
7649.4546
7785.9792
7943.7749
20884.293
20971.969
8110.2842
21336.348
21575.922
8183.6281
8242.8114
8209.9506
21461.256
21170.075
8302.9679
2730.9178
6965.1677
7357.2281
2646.954
6269.9801
5906.0663
8069.1566
8211.5496
8527.8877
2481.6825
2553.7004
2145.8594
1960.4712
1994.8086
2191.0881
5345.1641
5242.4453
4746.2001
4811.0812
4622.6939
5214.8603
5112.8688
4687.9546
4653.8941
4747.3738
4850.3171
4728.5346
4783.8345
4955.5356
4867.9146
4850.863
4025.122
3955.4888
3840.4227
4129.7296
3327.5717
3001.0239
3121.6382
3045.9541
3383.597
1141.9997
3454.059
4107.1198
4204.0225
4011.2837
4288.2513
1017.0493
4282.9996
4163.2754
4094.9071
4336.9095
3516.7255
3472.9482
3139.8916
3187.5845
1161.702
3143.4213
3073.6006
3382.5585
1152.8718
3443.5931
1018.4055
1017.8336
4080.1466
4239.6127
3995.2703
4169.2592
357.19368
355.27015
419.4105
725.96283
850.70262
855.77206
713.10577
848.45313
720.2949
5101.1744
4926.8311
4481.4562
4606.9085
4576.2274
4625.5696
4498.0884
4723.5191
4909.7342
4795.2584
4712.9436
4802.1452
5297.4243
4778.89
5182.567
4701.401
7255.5616
7560.2433
2648.1915
6439.0509
6157.4595
7135.723
7304.2188
2638.1526
6185.0688
6042.8185
8271.458
8416.9095
8490.4344
8613.827
2464.5627
2459.5639
8423.9856
8558.0076
8779.4012
8899.5094
9483.7552
9597.0716
9304.6448
9404.7375
9438.0012
9281.1462
9691.5969
9493.3911
10031.229
9629.3877
10156.219
9996.7432
9617.4296
10249.336
9817.39
7341.1649
7418.9888
2693.5162
6338.69
6254.9122
7305.4667
7502.4366
2649.8803
6393.7518
6216.5353
8517.6312
8636.2648
8604.3607
8719.2706
8468.5514
8604.5839
8704.5691
8811.9619
2464.7424
2519.9427
9394.3766
9227.4776
9791.0363
9592.317
9225.8242
9072.484
9473.8584
9281.3814
9758.671
9398.4669
10013.798
9599.5884
9941.4353
9565.4904
10360.251
9935.3173
1959.3432
1905.7373
2105.4718
2154.2868
1914.6749
1938.3186
2122.7141
2106.4389
10261.497
10501.858
9828.3304
10014.225
10422.158
9736.4873
10644.4
9895.976
10281.314
9829.3873
10143.486
10386.458
9477.0702
9656.2771
10205.346
9771.9778
10629.831
10135.044
10009.103
9588.5191
10256.814
9781.5037
10362.677
10773.67
9680.2065
10013.899
10128.946
9320.0482
10501.972
9602.1845
9661.3699
8686.576
9968.3407
8901.8538
9903.7678
9121.2891
10122.393
9274.7203
9452.0041
8507.5691
9632.4794
8623.7516
9371.0914
10187.461
10381.261
436.79991
611.96373
503.48736
499.04637
605.13345
1042.9797
1071.7842
1249.3695
1211.9811
1419.6668
1458.2786
1664.1283
1625.6586
1614.6492
1402.7326
1440.3316
1659.9231
1053.3346
1029.804
1205.0775
1226.9196
1088.3821
1261.0632
1257.0648
1674.7921
1471.0137
1486.1246
1697.1181
8894.6297
8982.9503
8869.6708
8972.5994
9211.7732
9338.3481
9015.3925
9136.2422
12259.741
12422.527
12554.103
12590.632
12658.402
12800.012
12886.905
12867.11
8453.7199
8641.9364
8784.6496
9005.84
9048.8462
9128.9356
9098.5272
9222.0398
510.3712
508.96566
482.10835
668.71282
655.41403
2239.613
4092.3965
4122.6336
2297.8709
4198.373
4214.0283
667.43918
2301.173
4172.791
4255.6889
2261.9722
4155.1522
4168.1325
658.6462
7547.9773
7561.8276
7717.2397
7673.6503
12983.365
13053.822
19026.099
19161.733
12966.496
12862.143
18821.044
19085.029
30072.647
47477.497
30531.383
47783.772
30363.414
47530.029
29952.456
47221.786
12755.944
12845.426
18757.077
18927.144
12795.145
12717.01
18894.891
18684.984
29207.848
29985.191
46736.878
46134.01
47226.928
47102.305
30035.923
29709.261
7768.4531
7680.1918
7687.5092
7616.1797
12922.95
19077.287
18795.291
12802.916
30507.487
30249.638
47347.715
47606.893
30157.177
47274.098
46942.024
29569.206
13065.425
12998.927
19097.979
19218.398
12978.054
13069.728
19055.701
19219.271
13106.562
13025.739
19231.731
19014.53
30166.143
30692.595
47685.515
47263.115
30126.32
47909.679
47471.928
30654.841
4051.6196
4081.9929
2198.3289
4744.5784
4709.5321
6293.383
6241.9965
10629.009
10556.539
16360.997
16095.316
6344.0855
6328.6483
16226.912
10646.194
10745.537
16397.054
19615.26
19509.273
23975.15
24208.019
24364.523
19785.933
19801.757
24291.052
24273.483
19734.618
24395.496
19785.691
19464.322
19451.259
24035.188
23893.899
28436.949
28172.128
42980.824
43744.863
53326.164
65744.512
66540.65
53746.297
44301.615
28618.03
28475.974
43675.455
66596.304
67332.238
54147.973
54045.371
43599.657
28485.55
28606.068
43866.334
43621.544
28271.086
28058.354
42990.855
54162.137
66503.38
66943.258
54501.865
66285.354
66988.286
54271.925
53899.374
37711.816
37094.923
11636.608
11694.98
37693.312
38290.456
11763.758
11785.951
37798.724
37583.531
11664.977
11706.78
36012.793
37122.662
11614.426
11608.276
37854.582
37010.743
11754.25
11833.262
38143.804
38554.93
11925.298
11970.47
39160.097
38140.889
12177.085
12119.364
38695.79
12081.122
12170.275
39257.146
41048.052
40399.835
40582.604
41197.636
39483.043
38320.303
40324.883
40005.545
11026.686
34894.076
35986.13
11128.261
36853.414
37065.782
11312.474
11362.789
37521.247
38075.872
11537.885
11618.557
11694.258
37999.532
37430.04
11743.029
38758.072
38085.871
11859.536
11941.463
38630.789
39116.804
11976.089
11998.628
38502.183
38887.179
11977.66
11923.539
38313.748
37389.444
11936.015
11930.595
324.90534
5648.2983
5575.2525
5714.4892
5797.0083
19787.685
19864.188
17991.185
18147.981
19041.931
19169.812
20935.754
20970.382
5279.7425
5209.9536
5523.6284
5584.4121
20156.441
19069.556
16829.95
18189.201
16552.181
18457.695
16868.782
15560.523
15885.36
17230.575
17778.039
19285.919
17547.962
19481.764
4764.4764
4721.4113
4974.0394
5023.2191
5101.5694
5005.21
5067.5253
5188.2839
4298.0404
4210.9687
4399.1506
4501.0263
3773.0587
3628.1234
3741.6489
3918.2241
3811.2643
3784.1724
3936.1832
3988.7964
4533.5646
4411.3631
4465.7995
4609.7509
10396.998
10585.709
9557.1007
9699.4152
10156.149
9348.3475
10328.457
9469.012
9688.5062
8698.7644
9831.31
8791.1898
9905.1323
8881.0065
10066.827
8995.2599
9521.7648
9651.6808
8547.187
8627.0832
10038.542
10157.296
9222.8869
9310.6408
9968.8344
9176.4147
10126.045
9285.3453
9564.3489
9673.2223
8576.0035
8650.2875
10198.172
9522.2067
10366.735
9644.8087
10049.9
10218.909
9619.9843
9749.3954
10167.816
10265.31
9708.3491
9788.6025
10294.091
10402.951
9589.0741
9673.8295
10398.997
9714.9028
10580.016
9848.084
10475.917
10672.688
10027.065
10192.411
10247.993
9817.642
10429.987
9956.8077
10639.138
10832.789
9934.7007
10091.662
9326.8231
8966.6592
9601.524
9195.4061
9122.0173
9457.1683
8962.207
9267.8934
9058.0197
8883.4606
9666.3432
10020.39
9292.485
9605.3313
8156.1864
8296.0313
8454.4554
8578.8039
7003.2665
7254.8654
2565.207
6151.4623
5913.2916
7315.8457
7430.9005
2667.5298
6325.86
6202.2716
7243.7669
7260.9614
2612.0416
6157.5598
6151.6854
8410.4971
8556.0304
8447.2462
8580.326
2434.9919
2494.5006
8509.9997
8644.3372
8642.3384
8772.5177
9505.16
9333.4832
9665.6127
9482.5639
9962.5498
9595.6436
10029.042
9632.1991
9398.3428
9246.1744
9449.9414
9279.1643
10067.028
9676.8099
10249.125
9837.6139
1953.944
1912.5429
2090.7422
2135.3312
9997.0024
9615.8136
10173.394
9752.5003
9639.4637
9809.8285
9467.5612
9623.056
9446.6886
9288.4583
9607.4718
9421.0431
10209.255
10392.34
9813.1925
9973.3703
8654.6525
8779.271
8795.4211
8916.9644
8475.4718
8614.5674
8613.1973
8732.2401
7319.1352
7420.6933
2707.8581
6236.8774
6324.1029
7472.2028
7589.2638
2733.2121
6493.588
6383.5382
2529.7306
2550.3332
7285.3834
7259.5266
2703.5737
6183.2499
6209.4449
7180.325
7279.3475
2650.2032
6207.3446
6114.4022
8330.9692
8449.7677
8454.2484
8557.3431
2489.5006
2550.7081
8462.331
8568.4672
8443.7863
8563.6175
2176.3475
1981.0902
1981.5071
2181.3923
2012.996
1957.5679
2138.8759
2189.3358
9417.689
9221.1622
9441.1915
9251.6469
9938.7812
9528.2492
9999.9714
9585.9127
9277.6563
9103.2561
9420.1584
9224.8323
9804.617
9422.8474
9962.4786
9548.1264
448.7537
623.63146
514.1478
439.37853
511.54267
619.7208
616.13736
507.67833
1243.4611
1073.1431
1255.0912
1088.4799
1630.1498
1444.2726
1472.1752
1661.7908
1689.0943
1473.9597
1459.853
1680.9801
1262.0012
1082.2048
1241.335
1067.8444
1667.0241
1465.2953
1505.1333
1711.7842
1254.1323
1079.5257
1279.0286
1104.0799
9864.7904
9082.0942
10197.681
9336.5684
9465.5386
8726.5982
9732.2012
8923.1455
9049.4393
9275.6053
8152.643
8308.4351
9419.8794
9699.6639
8466.2154
8668.4106
9555.5363
9834.734
9144.3624
9374.2408
10077.651
9418.7148
10437.243
9710.0753
9683.8218
9048.1157
9963.0491
9268.4676
9920.7489
10283.411
9497.5419
9807.9399
10336.097
10530.712
9892.4687
10056.33
10243.839
10312.45
9819.3807
9861.6976
10420.154
10493.563
9744.0935
9787.8946
10499.647
10692.97
9801.1393
9954.375
10267.466
9435.5252
10447.861
9572.1594
9781.1422
8770.4719
9938.8025
8881.4562
10203.809
9382.9785
10281.65
9436.6441
9722.3024
9803.3896
8727.3734
8777.1528
20691.043
20731.664
18859.237
18947.966
19333.696
19397.267
21153.852
21151.668
5479.4707
5398.4611
5604.7473
5698.093
20304.665
19901.252
20153.797
20229.31
18384.142
18505.301
19008.94
19085.177
20873.245
20887.206
5422.4087
5302.5915
5392.719
5500.1009
20050.943
19377.153
18598.054
18821.66
17174.544
16948.11
17278.488
17588.531
15954.773
16234.549
17693.067
19264.484
17529.74
19402.34
16501.331
17906.638
18113.388
16706.516
4966.0987
4825.6911
4891.7958
5058.829
4852.3106
4758.6058
4836.1274
4924.0171
17593.773
19100.344
17410.371
19278.07
16394.104
17767.126
18022.328
16634.411
18061.092
19622.996
17924.744
19732.953
16945.557
18334.971
18499.166
17112.513
17020.401
16061.859
16216.061
17210.843
17068.088
16988.061
16048.949
16101.655
15796.886
16575.838
15674.316
16742.08
16612.22
15694.225
16581.646
15682.375
16092.765
16817.131
15908.15
17062.624
16415.031
15555.383
15708.106
16621.615
16547.234
17293.191
16318.45
17555.414
16849.799
15929.645
17086.644
16136.446
16187.392
15532.906
15641.809
16325.509
15326.194
16227.21
16100.517
15426.839
16211.557
16205.916
15555.569
15531.836
15574.585
16066.067
15446.202
16238.918
15277.473
16017.094
16162.634
15382.924
16678.353
15977.999
16457.612
15789.272
15589.01
16378.318
16577.508
15758.55
20818.273
20821.228
19005.95
19051.587
18801.335
18844.31
20553.554
20532.856
5570.3879
5499.172
5560.8893
5632.8815
19704.436
19990.216
20514.571
20547.478
18748.331
18827.713
19336.349
19444.05
21215.424
21242.009
5528.6923
5439.8904
5597.0849
5674.7562
20401.971
19705.505
19284.264
19395.487
17596.341
17718.241
18151.719
16597.961
16751.361
17983.607
19109.295
19180.389
17555.719
17464.527
17884.392
17977.727
16536.154
16619.766
17534.019
19005.663
17366.387
19172.696
17740.577
16409.958
16606.754
17970.936
18069.69
19611.526
17874.84
19777.795
18273.398
16860.723
18507.109
17089.613
4940.4365
4864.3968
4993.1832
5069.4461
4974.2924
4925.7489
4990.2105
5048.6677
16105.775
16797.291
15854.22
17090.36
16344.348
15468.315
15705.245
16635.34
17578.869
16595.953
17396.533
16433.882
16968.678
16054.941
17136.901
16200.066
15709.383
16328.928
15415.616
16672.62
15880.049
16220.625
15034.851
15313.507
16142.986
16914.64
15935.494
17148.906
15515.211
16431.905
16658.42
15715.557
15151.026
15503.552
14891.525
15821.11
15417.254
15711.478
14711.531
14947.551
16230.763
15532.973
16009.285
15344.721
15133.653
15898.05
16104.122
15309.582
15557.119
15965.86
15334.937
16236.287
15152.565
15889.944
16143.979
15362.685
16746.477
16058.95
16591.05
15927.64
15738.728
16521.604
16661.112
15857.59
3728.5612
3699.6733
3857.6988
3899.1326
3714.1287
3634.0318
3789.5346
3884.3419
4392.0581
4257.6435
4371.9144
4499.2507
4452.7555
4331.7365
4368.3425
4495.663
3656.0287
3622.697
3770.3923
3835.9437
3652.9973
3620.4305
3773.2507
3812.741
4263.8422
4200.7611
4322.5478
4385.7487
4356.3338
4233.7143
4314.6019
4461.5131
15336.826
15816.512
15242.435
15945.816
16141.671
16326.955
15529.696
15682.403
15805.417
15077.885
15922.711
15164.448
16275.913
15345.571
15485.045
16111.924
15568.625
15688.939
14977.333
14876.811
15238.613
14264.638
14375.657
15377.184
15262.036
15854.327
15141.017
16009.81
15532.537
15654.112
14507.381
14640.947
15364.101
15860.797
15261.396
15988.338
15821.427
15080.428
14900.937
14246.356
14443.723
15161.309
15517.87
15326.966
14635.9
14786.815
13864.386
14567.467
13680.923
14804.458
15159.259
14195.238
14993.629
14030.335
15676.787
15927.102
15102.938
15314.203
15901.395
15139.245
15650.539
14935.289
15798.855
16297.11
15685.883
16432.015
16267.501
15493.653
15593.175
16389.186
14878.019
15203.79
14650.044
15480.452
15162.14
14466.873
14682.338
15429.978
15221.555
15649.931
15053.644
15850.331
15597.209
14859.148
15783.653
15017.221
15419.561
14741.313
14949.681
15666.635
16003.511
15276.571
16112.49
15362.594
14341.243
15099.84
14138.356
15347.015
15746.11
15654.36
14621.495
14731.914
14341.363
13583.846
14578.846
13757.597
13993.964
13070.654
13810.27
12946.388
14964.428
14829.52
14011.322
14125.153
14351.426
13399.462
14221.881
13290.883
13155.226
12470.871
13292.636
12568.433
12816.064
12028.322
12128.585
12701.788
13487.375
12764.259
13611.159
12861.167
13078.82
12311.405
12984.811
12269.158
13905.068
14108.47
13209.33
13352.998
13612.174
12739.495
13457.673
12635.452
14241.814
13489.027
13638.682
14432.044
12978.872
13715.718
12847.976
13879.218
12857.285
12975.96
12191.75
12274.769
12514.817
11813.724
12410.849
11711.578
13055.815
12372.643
12484.192
13201.184
11992.556
12600.665
11928.567
12713.877
13053.475
13927.544
14032.97
13115.398
13696.044
14471.425
14611.724
13794.964
14718.17
13906.857
14872.781
446.17144
620.05114
594.08575
951.14387
756.22023
744.10052
933.17605
919.5114
931.71737
729.04295
733.6041
965.85159
767.34905
1317.9945
1303.2772
1528.9107
1532.5164
1364.8951
1395.4168
1623.1195
1585.7428
1889.953
1933.6786
2149.2538
2114.2165
2050.2404
1824.7204
1827.4524
2060.294
2386.2874
2379.8943
2586.8439
2603.4939
2436.6554
2467.6242
2662.3923
2643.1403
3033.4351
3035.3633
3221.1916
3230.9271
3191.1363
2986.8542
3003.5746
3215.508
3201.7166
3013.1035
3047.5145
3264.4486
2606.0152
2377.2455
2391.0074
2626.3496
2471.6008
2422.7771
2651.1622
2693.0127
3261.2267
3059.5963
3095.2472
3294.8754
1347.1504
1328.2452
1556.3513
1587.096
1280.7068
1281.8563
1505.9564
1498.3781
2042.8388
1800.0702
1798.2213
2051.8626
2087.3527
1856.235
1895.3182
2138.314
1361.7556
1380.2785
1609.6936
1596.355
2128.777
1912.7274
1913.9759
2144.626
2161.5213
1928.4264
1958.0782
2210.0007
3215.313
3046.8754
3091.0796
3297.9261
2651.9793
2453.9906
2471.7343
2684.0996
2551.093
2525.4564
2725.9354
2764.1105
3342.9432
3139.0703
3168.7973
3370.6176
12470.69
12548.283
12420.939
12365.733
12418.897
12528.326
12605.91
12599.311
12918.621
13050.775
13048.644
12929.545
12538.963
12675.059
12772.593
12799.132
11756.434
11933.517
12127.94
12164.608
12345.317
12478.029
12532.56
12556.797
12679.924
12818.515
12841.267
12836.937
12754.378
12841.868
12776.641
12722.121
485.68042
686.79808
706.27237
484.26259
693.6752
703.81674
446.66541
701.62282
697.71962
669.81302
673.29342
2213.3776
4075.8777
4060.9256
4722.2016
4744.844
2266.7695
4167.2217
4167.4874
4838.7424
4848.7025
4210.5089
4140.1374
2266.3929
4899.5926
4788.9415
4119.4485
4122.0587
2233.8523
4788.9397
4801.8709
6326.2202
6261.2128
10597.121
10545.224
16162.188
15938.96
6307.6496
6271.3334
10534.441
10657.649
16006.242
16191.06
6441.422
6413.7764
10741.625
10832.77
16286.476
16418.906
6426.7724
6388.271
10762.86
10657.4
16352.992
16076.127
19636.251
19523.362
23939.626
24179.983
19764.598
19737.41
24258.491
24198.46
19347.651
19373.268
23822.142
23742.904
19707.026
19655.166
24144.6
24236.412
28397.578
28110.033
43176.684
44239.341
53905.005
66034.712
67208.805
54176.781
28377.094
28509.03
44987.01
44340.083
67383.724
67914.435
54647.035
54295.012
28376.437
28415.449
44036.472
44456.727
67374.274
66858.061
54306.786
54371.39
43943.357
28023.332
27860.038
42938.754
53953.344
66848.922
66084.753
53583.707
19339.19
19231.526
23625.866
23858.033
19531.583
19496.701
23989.085
23949.544
19507.363
19446.538
23915.273
24034.35
19201.928
23668.293
19244.57
23638.81
28045.005
27768.077
43060.735
42043.334
28094.854
28186.794
43081.378
43492.143
66562.484
53542.813
53460.65
66008.526
65991.971
65069.07
52298.118
52853.24
66611.6
66728.206
53942.974
53811.034
53776.346
66270.322
66187.116
53467.711
28221.099
28113.316
43626.762
43462.807
27798.394
27858.961
42813.416
43074.921
6509.9827
6457.4879
10808.017
10870.533
16504.869
16281.194
6393.7657
6356.5412
10786.918
10665.705
16267.792
16453.809
6402.8801
6368.0502
10818.825
10715.07
16457.393
16323.337
6374.097
6340.5211
10709.945
16015.327
16322.975
10587.399
19662.78
19712.739
24289.666
24183.369
23864.512
19334.684
19344.914
23775.995
28581.556
28461.88
44280.516
44709.951
43743.079
28236.286
28491.242
44264.276
53376.602
66285.394
66966.697
53990.032
54538.089
67287.458
67232.523
54043.608
28395.36
28492.557
44129.217
44002.344
54305.421
66748.073
66841.494
54093.702
53759.811
66439.381
66230.224
53227.318
28091.698
27947.063
43075.019
43379.811
24061.105
19609.117
19717.06
24290.665
24364.419
19818.696
19842.866
24301.73
19660.913
19529.942
23957.098
24227.474
19801.67
19839.839
24325.168
24291.282
24281.559
19809.484
19867.79
24392.097
19589.179
19567.344
24043.833
23966.577
43416.621
28117.29
28424.818
44000.492
28452.886
28528.577
44119.906
44661.374
67446.52
54460.522
54161.234
66909.161
53271.474
66098.552
66765.361
53946.665
28232.127
28086.855
43676.357
44329.016
67736.358
67437.56
54598.295
54551.483
54754.016
66902.365
66462.77
54093.266
28564.084
28485.335
44534.067
44793.247
7110.4566
7180.7092
7207.9074
7251.614
2013.832
5155.7668
5096.3781
4558.8163
4608.9569
7165.5638
8242.1313
8182.9482
7196.0734
8064.2029
8144.4827
7119.2269
7061.9812
2020.2265
5169.0073
11540.741
17289.254
11460.087
17009.552
22273.27
22151.73
21907.502
21779.742
21865.717
17133.479
22075.065
11561.984
17318.939
11664.64
22243.22
22171.188
26040.75
26348.815
26497.386
26361.406
26363.343
26550.098
26165.997
25948.604
30724.395
30390.639
60527.25
62303.717
57536.852
99411.821
99930.55
58076.002
63043.903
30913.735
30692.839
61730.589
99716.151
99884.562
58303.673
58110.111
61558.707
30726.146
30906.176
62180.862
61926.878
30560.451
30259.391
60835.203
58147.772
99804.578
100033.46
58388.503
99809.796
100037.64
58283.574
57900.006
322.95891
407.41597
40117.141
39567.862
40116.702
40660.595
40248.532
39890.062
38410.392
39593.031
40214.399
39463.342
40602.36
40938.758
41561.313
40566.062
41093.265
41686.544
73144.623
36184.95
72287.821
35551.78
72154.526
35938.252
73021.998
36487.521
71676.34
34682.042
70009.287
33604.747
72436.624
35528.451
71953.68
35211.074
37025.134
38238.702
39141.341
39291.247
39797.878
40508.186
40445.414
39876.692
41146.386
40402.387
41016.381
41417.964
40862.935
41339.012
40842.87
39824.87
18544.753
17531.596
17501.86
18547.769
29466.912
35907.264
26394.991
27038.841
26522.461
27230.291
28360.777
28505.907
28263.623
28338.519
17682.301
16758.977
17616.87
18642.035
30112.685
30258.42
36713.068
36520.365
28568.622
27119.028
33307.677
34873.343
28239
26957.719
27522.982
27673.059
28149.038
28779.041
29493.946
28873.723
29563.276
28874.416
29505.205
28970.428
30193.06
15876.533
14981.894
15634.243
16631.792
15505.44
15575.375
16556.139
16502.415
16023.518
15126.846
11266.198
12292.944
14218.211
13265.684
14077.442
13124.365
13559.869
14619.127
12140.052
11096.095
11325.392
12459.05
11328.284
11391.121
12494.288
12412.081
14586.877
13552.491
13464.925
14498.256
14751.662
13953.481
14123.525
14986.44
15005.922
14974.447
14148.783
14178.809
13384.191
14168.537
13259.404
14347.587
14400.994
13460.028
14365.111
13423.428
13673.348
14331.962
13585.365
14468.466
13820.768
12953.841
13012.144
13917.608
13933.381
14527.783
13749.816
14758.715
13965.671
13071.279
14162.756
13231.56
12517.438
13165.894
12472.737
13234.772
11968.17
12691.692
12752.968
12039.077
13437.808
12699.983
13265.161
12565.965
12107.209
12786.533
12919.876
12187.994
13453.719
12739.828
12840.582
13591.541
12263.279
13076.03
12960.874
12365.115
13620.258
13663.06
12884.968
12919.776
12384.795
13127.087
12365.56
13105.112
13010.043
12326.882
12366.768
13079.11
13230.271
13080.234
12390.52
12505.917
11899.191
12558.057
11843.442
12604.961
12728.334
12006.699
12621.683
11949.925
14189.695
13446.078
13561.346
14354.891
14249.703
14171.708
13443.513
13511.594
12895.746
13683.821
12817.253
13803.019
13760.641
12888.533
13680.603
12817.357
13497.017
14118.289
13390.059
14282.667
13640.324
12787.516
12851.568
13746.287
13687.327
14294.052
13530.214
14488.545
13757.309
12878.263
13924.01
13018.007
13026.327
12335.091
12396.356
13113.274
13023.799
12338.127
13107.043
12404.723
11921.101
12557.064
11861.245
12626.885
12613.656
11868.06
12550.495
11849.048
14605.709
15139.689
14469.274
15310.007
14821.726
13891.1
14039.188
14995.01
14822.9
15331.284
14657.214
15541.237
15043.72
14077.917
15210.465
14248.413
15411.973
14844.107
14989.745
15592.579
15582.022
14999.915
15233.872
15860.645
15389.066
14672.29
14806.493
15555.348
15565.305
14838.103
15035.788
15804.814
15610.405
15004.296
15115.058
15744.43
15567.95
15472.578
14889.312
14959.509
15541.357
14794.263
14901.124
15672.248
15501.067
15432.526
14702.678
14759.07
15263.922
14567.513
14686.31
15397.328
15227.894
15174.142
14489.297
14551.335
13970.229
14110.157
14915.095
15067.266
14895.41
14837.69
13934.246
13992.18
14807.217
15384.411
14707.955
15515.87
15056.772
14115.522
14228.163
15195.112
15840.296
15111.914
15601.764
14919.667
15301.497
14319.607
15508.716
14521.014
16149.754
15556.158
15695.626
16324.893
16330.003
15734.102
15775.497
16395.557
15527.683
16125.634
15378.856
16296.197
15578.561
16331.838
15570.049
16356.802
15184.686
15666.16
15095.089
15796.227
15637.981
14915.287
15005.941
15754.074
15515.753
15873.876
15284.739
16150.656
15849.171
15111.749
16095.962
15320.529
15881.374
15187.427
15361.06
16073.792
16093.801
15380.048
16090.261
15364.993
14554.35
14748.51
15567.613
15782.586
15754.931
15778.017
14753.41
14771.668
14400.171
14198.429
15052.403
14692.206
13994.176
14181.799
14925.789
15570.865
14895.114
15297.937
14660.142
15189.816
14450.655
15450.773
14675.536
16339.274
15417.778
15610.005
16567.275
16995.329
16746.749
15815.881
16039.806
15220.409
15902.86
15045.253
16128.665
16577.254
15665.971
16325.786
15443.184
14573.295
15469.149
16431.768
15711.997
14829.816
15976.962
15067.782
15531.793
14915.622
15077.723
15736.452
15951.79
15317.879
16200.573
15532.568
14735.973
14888.074
15459.197
15650.488
16121.061
15883.785
15134.215
15338.849
18535.749
18662.896
16914.028
17033.363
17462.434
15944.735
16112.818
17279.218
18901.675
19034.989
17420.094
17267.698
17666.62
17867.76
16321.929
16523.519
19996.812
20026.88
18279.708
18323.154
18614.365
18679.556
20342.725
20356.669
5252.1001
5163.1558
5347.5711
5436.7767
19490.547
19167.848
20845.57
20857.467
19046.474
19066.897
18829.724
18889.954
20552.908
20556.445
5509.4753
5425.9085
5506.9158
5598.5886
19688.846
20013.806
20259.824
20266.349
18579.212
18581.019
18643.965
18758.569
20399.947
20444.564
5465.2149
5372.3988
5367.278
5459.1355
19570.852
19409.926
18859.499
18924.806
17313.887
17262.336
17650.194
17752.22
16346.696
16423.634
17484.591
18919.944
17268.195
19110.003
16312.084
17655.575
17936.376
16593.799
4881.0745
4796.2128
4779.2852
4860.4705
4889.2909
4848.5289
4915.1164
4977.8034
17715.172
19325.471
17635.54
19408.898
16638.747
18022.412
18155.974
16761.168
17643.796
19136.121
17505.089
19252.647
16583.634
17920.042
18097.812
16759.588
16243.828
17065.227
16105.615
17230.992
16615.194
15720.326
15852.213
16784.166
17236.927
16283.148
17034.952
16105.381
16633.407
15753.129
16822.479
15909.845
15477.581
16042.127
15435.327
16127.141
15286.64
16011.597
16063.095
15309.282
16303.674
15631.183
15965.355
15340.531
15190.445
15918.674
16232.723
15459.096
15946.666
16769.736
15866.772
16884.955
16375.952
16479.297
15531.383
15593.062
16112.21
16736.356
15807.336
17068.805
15452.679
16317.064
16657.775
15755.032
15709.953
16235.179
15584.771
16392.816
15396.832
16156.081
16304.829
15516.116
16446.992
15771.219
16281.712
15641.069
15472.75
16224.782
16356.344
15572.64
3639.5443
3668.4763
3803.49
3801.9128
3582.8743
3622.1293
3765.176
3740.2944
4191.3283
4214.3348
4334.0725
4310.9534
4379.0897
4262.1123
4262.4245
4399.9717
15457.436
15963.511
15339.014
16136.529
15892.778
15149.141
15247.876
16029.377
16491.612
15795.467
16188.968
15537.682
16108.523
15341.425
16390.117
15583.954
17222.803
16275.254
16449.54
17428.05
17506.234
17317.087
16379.125
16539.516
16062.557
16802.32
15907.961
16999.218
17081.169
16156.834
16926.127
16029.009
16007.121
16764.504
15844.169
16975.412
16340.281
15470.306
15614.241
16532.874
16349.784
17031.284
16071.555
17338.516
16586.578
15681.74
16891.153
15950.722
16433.753
15790.017
15935.447
16612.065
16574.268
15926.869
16696.281
16019.842
15605.381
15744.852
16371.952
16542.342
16613.131
16530.035
15757.969
15821.379
19429.158
19541.23
17765.686
17879.917
18332.041
16788.956
16945.728
18165.893
19425.114
19558.022
17935.455
17781.024
18211.561
18389.572
16855.417
17029.174
17440.549
18951.248
17320.938
19081.402
17698.014
16358.687
16513.839
17878.995
17795.171
19291.854
17596.248
19470.493
17995.183
16605.415
18248.562
16859.731
20431.383
20457.977
18689.188
18730.383
19013.354
19113.054
20840.503
20873.061
5548.9725
5477.6299
5560.9273
5626.7058
19609.652
20015.108
20929.246
20938.744
19148.113
19183.198
19111.768
19190.723
20862.075
20870.772
5686.3692
5603.6888
5678.921
5768.2373
20008.772
20092.615
4993.8864
4938.7107
4973.1754
5037.2099
5060.3072
5012.4155
5084.1321
5148.1289
20787.268
20791.28
18948.974
18974.058
18402
18477.237
20137.776
20144.734
5547.9318
5510.0484
5451.4783
5505.1449
19283.984
19953.781
20352.206
20370.721
18553.315
18608.577
18714.9
18852.181
20551.658
20597.824
5454.1141
5394.1853
5474.8202
5528.7649
19749.704
19553.541
18817.097
18947.753
17284.996
17147.224
17518.387
17714.257
16157.993
16336.505
17540.871
18994.684
17293.91
19208.049
16299.558
17686.416
17990.107
16604.044
4917.1739
4870.6138
4926.1373
4978.6763
4904.7374
4982.496
5014.2188
4957.9726
17610.482
19239.505
17522.269
19324.376
16499.217
17912.365
18046.527
16621.27
17228.933
18710.219
17075.881
18840.585
16152.818
17487.048
17671.128
16326.917
4485.1471
4390.8123
4389.5663
4496.3637
3930.4394
3795.0423
3760.6669
3912.5469
3789.6476
3783.3071
3931.3505
3956.6958
4533.5314
4408.3099
4430.856
4568.9515
3765.4088
3842.3049
3962.882
3896.9992
3762.7287
3731.1938
3855.9826
3897.2503
4417.6386
4312.0666
4359.5127
4460.1755
4518.7161
4432.5293
4345.2489
4444.3758
16063.029
16920.486
15933.963
17076.398
16430.207
15505.762
15621.221
16580.712
16782.281
15819.856
16592.399
15656.916
16164.581
15279.162
16331.352
15416.799
15433.612
16000.809
15327.085
16135.319
15097.476
15874.949
15998.388
15195.788
15923.306
15248.34
15781.074
15136.357
14946.703
15690.441
15801.246
15031.244
15808.544
16561.47
15619.457
16783.931
16106.05
16324.419
15227.549
15404.302
16077.816
16725.187
15764.897
17069.37
15372.204
16271.777
16608.227
15672.577
15245.054
15715.791
15082.447
15917.594
14895.494
15630.759
15813.809
15043.599
16200.053
15508.543
15878.059
15231.134
15048.379
15798.503
16090.997
15300.332
9522.5358
8739.2784
9088.7625
464.09521
604.83345
951.47774
954.46215
754.99828
757.28064
448.35664
614.96154
600.38667
961.29262
950.0341
766.76472
760.3851
957.22258
968.05745
761.4968
759.41576
2118.9216
1877.2108
2090.4129
1354.6874
1582.9961
2150.5023
1939.7713
1948.6763
2155.9867
1619.8577
1379.9662
1398.1231
1644.8214
3205.6501
3031.4588
2976.7233
3165.1354
2634.763
2441.3955
2394.6878
2592.7991
2465.5416
2478.1883
2658.7341
2653.925
3241.1642
3054.246
3033.3576
3217.047
3367.757
3192.4383
3137.5776
3327.853
2776.376
2558.5306
2495.1249
2728.3615
2505.9901
2495.2101
2720.9573
2742.2399
3343.713
3139.8768
3150.8847
3353.062
2210.6589
1968.5598
1923.0193
2164.5752
1629.8462
1379.7508
1373.4343
1607.1968
2149.737
1907.4803
1921.8695
2171.9257
1576.7343
1340.3027
1360.7649
1602.4789
3308.7443
3142.7896
3156.1729
3334.273
2728.2711
2517.9002
2518.2626
2746.6514
2591.2806
2609.4658
2811.0853
2794.0915
3404.244
3231.476
3186.2763
3348.6712
2177.0374
1939.2173
1940.8148
2185.0119
1607.5954
1366.4003
1372.2772
1619.0967
2255.0326
2028.0414
2029.4559
2257.2281
1678.5665
1425.574
1447.1555
1704.3706
14012.886
13274.321
14217.222
13424.144
13663.081
13499.183
12644.845
12757.209
14356.861
14556.391
13586.379
13752.84
12901.038
13985.271
13058.48
13798.819
13284.888
13505.429
12634.872
12793.751
13053.281
12212.962
12882.139
12096.118
13692.26
12988.471
13163.654
13918.144
12533.736
13219.412
12382.95
13408.97
12308.703
11670.475
11760.619
12438.604
12582.891
11920.133
12748.838
12048.97
11324.77
11882.102
11220.005
11990.345
12269.987
11493.898
11577.682
12135.91
12841.828
12162.597
12250.451
12968.133
13088.449
12390.204
12524.994
13262.653
11810.699
12379.578
11722.481
12481.893
11986.81
12596.498
11914.037
12732.42
14456.681
13917.662
14106.116
14681.164
14942.84
14372.23
14591.123
15198.308
13926.401
14403.733
13736.36
14632.427
14402.525
14894.052
14192.802
15139.126
15014.267
14365.976
15199.166
14516.344
14922.585
13964.946
14727.257
13798.791
15409.562
14733.819
14888.262
15613.399
14310.62
15105.751
14141.001
15268.809
14155.347
14390.097
13537.418
13733.106
14095.212
13236.771
13854.132
13043.349
14650.404
14000.872
14195.787
14886.567
13663.464
14352.863
13463.864
14565.911
15248.347
14689.127
14838.79
15433.511
15666.507
15086.865
15285.594
15898.909
14679.538
15228.507
14536.718
15411.083
15644.571
14915.556
15098.343
15864.137
15936.699
15344.919
15474.771
16090.254
16133.64
16026.472
15441.116
15520.105
15909.453
15176.54
15306.727
16069.324
16096.208
16017.392
15276.935
15331.455
15829.694
15263.846
15288.277
15875.242
15736.244
15174.372
15424.5
16033.381
15834.396
15119.267
15148.174
15881.194
15755.132
15051.061
15275.759
16023.153
15625.328
14944.744
14989.088
15681.858
15568.116
14903.54
15096.009
15810.746
15326.186
14346.472
14414.952
15402.979
15310.172
14338.57
14529.464
15508.367
15677.382
14981.231
15122.504
15841.236
15842.749
15786.116
15085.008
15134.533
15355.597
14368.574
14530.733
15532.193
15512.978
15464.456
14484.864
14539.311
13933.536
14586.694
13795.628
14775.567
14013.61
13109.003
13209.384
14162.807
14782.547
13978.084
14710.878
13912.269
14126.952
13204.834
14207.43
13277.297
12667.146
13303.667
12589.256
13415.459
12107.023
12806.565
12893.662
12180.101
13484.09
12745.373
13397.663
12675.603
12162.645
12883.181
12949.848
12183.808
13830.258
14553.063
13755.328
14659.213
13965.425
14056.606
13059.007
13119.5
13940.035
14566.934
13777.589
14771.703
13082.623
13990.528
14166.444
13229.415
13249.811
12537.532
12587.831
13324.8
13431.792
13273.631
12568.44
12690.618
12124.667
12751.56
12052.063
12818.023
12910.519
12134.112
12793.534
12197.133
27766.878
28151.658
27909.511
28363.861
28811.739
28758.573
28662.136
28553.908
18388.705
17360.364
17617.329
18709.111
30275.656
30792.834
37315.114
36700.978
30004.689
29096.448
35495.548
36384.483
26982.946
27668.778
27129.155
27876.815
28362.179
28375.306
28236.152
28181.711
17478.062
16909.674
17899.859
18517.381
29629.858
30082.833
36539.622
36027.077
33989.109
27693.38
29385.331
35813.67
27594.971
28349.917
28949.602
28177.165
28814.9
29602.726
29453.581
30248.819
29436.747
28875.376
29502.622
28843.445
30851.128
30183.781
30084.702
30719.967
15505.869
15359.393
16363.921
16563.441
15468.394
15008.964
15957.417
16474.55
29450.795
28399.11
29009.042
28846.871
30319.927
29672.567
30111.654
30766.395
29865.824
29366.037
30036.398
29248.778
31459.789
30756.521
30536.845
31196.888
31398.123
32132.347
32187.815
31492.017
30931.412
31442.664
32194.392
31611.068
33641.576
32903.837
33643.787
32924.365
32324.185
33010.978
32975.187
33719.067
31922.245
30926.146
31667.045
31220.333
32441.211
33188.647
33402.37
32671.819
32700.179
32027.879
32781.4
31993.621
33570.646
34324.192
33453.628
34189.081
34395.87
35132.21
35107.122
34375.243
36607.468
35866.327
35894.646
36589.8
34474.62
33717.863
35209.498
34413.64
34899.154
33953.214
34705.739
34155.248
36213.632
35484.844
35671.612
36406.042
34939.993
35679.431
35089.28
35835.088
37324.532
36607.161
36449.846
37173.036
27978.4
28170.792
28150.305
28394.81
28033.893
27929.269
27851.341
27717.479
18464.021
17426.711
17154.832
18184.188
29058.428
29518.164
35999.39
35387.208
29833.437
29548.728
35988.747
36221.056
27540.886
27863.224
27701.306
28089.08
28708.235
28882.2
28576.848
28689.887
18191.867
17161.466
17760.845
18832.981
30637.283
30580.634
37041.826
37048.115
29494.546
28795.909
35197.546
35873.862
28672.586
28876.955
29313.558
29490.327
30155.445
30682.995
30812.032
30006.982
28585.885
28388.478
28985.206
29259.267
29984.195
29631.853
30699.408
30268.007
29202.838
28209.423
28840.61
28585.97
29528.716
30214.165
30533.547
29877.116
29977.404
29243.319
29894.149
29365.651
30597.761
31297.032
30645.636
31304.007
16171.134
15169.068
15683.341
16726.526
15176.549
15412.613
16423.048
16166.094
32143.729
31020.383
31733.884
31453.223
32484.481
33212.318
33600.204
32884.026
31893.393
32600.938
32208.65
32961.967
33748.715
34503.32
33347.209
34071.851
31600.139
30127.641
30817.529
30922.443
31545.586
32325.485
32252.006
33028.818
32058.062
31563.778
32280.004
31386.972
33741.66
33029.152
32777.495
33473.613
34443.305
32972.432
33679.457
33744.448
34412.014
35173.552
35102.107
35866.981
34187.966
34891.904
34469.733
35176.742
36589.618
35909.311
35628.8
36324.243
35067.674
33957.296
34688.396
34339.376
36151.115
35445.116
35824.828
36549.169
34821.305
35562.743
35271.855
36019.239
37509.125
36791.002
36336.476
37066.303
11041.697
11145.027
12256.448
12111.043
11228.012
10993.525
12075.964
12394.271
14160.822
13119.323
13518.258
14619.286
14391.822
13330.016
13150.879
14175.473
11087.842
11087.993
12204.345
12225.035
11212.851
11041.797
12070.47
12320.204
13393.393
13068.301
14048.137
14443.818
14341.767
13280.37
13336.351
14432.318
37886.812
36976.71
37704.083
37166.257
38069.491
37925.927
38774.6
38641.295
38427.899
39163.42
38605.024
39343.546
39357.798
40191.597
40085.767
39480.289
39889.979
40072.136
40638.029
40452.437
40921.824
41183.301
41373.321
41104.948
41352.551
40899.128
41445.047
40806.171
41898.05
41807.794
42177.252
42033.5
38059.355
37352.14
38060.654
37342.264
38768.799
39488.617
38508.424
39011.693
39764.686
39274.393
39822.509
39985.554
40497.4
40341.388
40352.896
39415.586
39571.251
40163.631
40777.904
40967.992
40925.869
41144.527
36890.903
37300.96
37592.901
38017.021
38726.735
39453.802
38291.956
39007.144
38556.933
38254.289
38958.252
37828.503
39657.969
40366.845
40007.569
39276.277
37261.447
35816.914
36493.972
36584.957
37164.053
37845.905
38615.068
37932.603
37738.022
37298.04
37967.018
37049.535
38635.103
39316.247
38425.246
39128.272
39716.28
40260.898
40719.832
40171.593
41069.271
41601.341
40724.872
41266.008
41424.271
40711.412
40967.673
41167.553
41718.428
42033.92
42269.046
41913.559
41033.746
40720.292
41499.918
41230.479
40713.21
39742.956
40174.003
39173.912
41951.311
42317.568
41985.07
41606.53
41023.914
39951.675
41420.394
40363.808
37998.481
36567.45
38579.842
37165.294
36142.437
35540.222
39129
37625.82
38705.557
37185.123
36061.378
36539.24
39526.911
40354.419
39120.204
40010.754
39418.843
38391.934
38480.585
37415.135
41162.255
40805.126
40632.678
40987.816
39013.912
40233.771
39199.609
40050.883
36185.002
37177.075
34737.281
35738.441
34686.213
33671.424
37997.435
36546.859
36326.444
37798.071
35518.48
35256.057
39287.767
40359.25
40692.062
39703.03
40938.912
41259.835
41467.532
41210.092
42268.271
41976.798
42108.864
629.42039
599.17498
628.37005
599.22887
877.29879
819.74602
803.91076
815.50851
1220.6446
1019.7782
1014.5334
1222.4455
966.01433
1164.537
1175.0529
965.8491
948.88084
948.07411
1145.3771
1153.9516
1179.4709
967.73869
970.76219
1192.755
864.27421
1199.5038
999.73345
1002.1067
1205.7091
1855.3476
1865.8159
3260.8752
3275.2086
1957.4954
2038.5295
3539.536
3395.1243
4447.8586
4604.1668
5695.6556
5558.4183
5404.0907
4303.4365
4310.8704
5409.233
6509.6833
6516.7019
7644.5407
7633.3926
6669.4146
6773.3132
7842.9821
7795.705
8924.2327
8905.7164
9973.0703
10066.075
9936.024
8774.8227
8767.063
9921.2952
9877.0446
8725.0609
8815.7622
10024.899
7596.7949
6452.9947
6455.4061
7623.6574
6621.0025
6541.2772
7698.2294
7733.9492
9997.5762
8830.4048
8830.1638
9937.5585
1915.0284
1855.6542
3249.5875
3361.5769
1793.9227
1827.7932
3209.1752
3156.2992
5334.3489
4243.6736
4197.9856
5316.2563
5408.9663
4295.6542
4416.8712
5520.5436
1944.5318
1982.9663
3481.2949
3389.9748
5626.9211
4543.9133
4451.8579
5554.6307
5661.3396
4510.5527
4617.5512
5763.2167
10018.756
8905.8575
8975.8731
10150.28
7803.7563
6706.2434
6667.8797
7807.5672
6870.2309
6794.6172
7935.6619
7981.15
10243.512
9075.8629
9088.7148
10208.074
10187.03
9058.4918
448.47547
717.59676
700.4386
688.10942
672.79815
448.11935
704.7663
718.70788
687.98318
675.72435
408.28882
643.90869
644.16429
605.25763
608.67922
1707.8414
1701.2404
2028.8113
5137.242
4592.0251
4600.5197
5147.5725
7138.544
7221.2166
7143.6798
7210.1693
7099.8762
8194.3776
8105.9977
7155.7695
8098.7397
8187.716
7160.4871
7089.7759
2076.5985
5261.4571
5251.6516
4703.0989
4702.6108
7276.5337
7324.8684
7299.5143
7351.8717
7258.568
8347.7076
8281.3297
7299.4219
8253.8523
8301.0793
7268.2155
7230.4751
7352.2062
7422.1525
7221.5648
7288.3831
2072.0944
5177.3038
5312.3076
4748.4935
4650.3825
8414.9327
8334.8036
7306.3912
7366.0927
8176.1578
7176.1735
7230.9788
8261.5248
7229.8823
7273.442
7247.2363
7315.7862
2051.1831
5200.6807
4651.2859
4655.3979
5225.6805
7203.5736
8313.7504
8219.3833
7260.0817
8207.6783
8249.289
7213.6706
7182.1151
11512.59
17102.038
11451.041
16863.299
21931.594
21803.546
21573.552
21529.959
11444.565
16925.193
11573.406
17127.788
21527.363
21736.756
21887.766
21851.948
11656.192
17191.783
11747.156
17332.105
21846.438
22058.766
22142.66
22097.454
11680.995
17288.779
11563.428
16991.924
22025.075
22150.856
21663.337
21726.573
25969.228
26271.264
26346.688
26227.274
25912.69
25755.411
26207.661
26352.159
30625.828
30280.238
61238.519
62983.835
57403.221
99820.865
99835.769
57773.995
30545.252
30754.092
64347.787
63024.101
100336.64
100521.49
57952.566
57945.743
30584.339
30665.121
62638.208
63636.901
100687.25
99717.045
58024.808
57814.397
63252.086
30265.921
29991.531
60874.457
57885.524
100595.86
99784.816
57669.163
25634.13
25933.434
26063.054
25967.409
25962.479
26130.779
25742.752
25645.471
30237.911
29910.695
61727.009
60323.448
30235.134
30403.793
61272.754
62344.575
99696.195
57438.113
57409.21
99603.898
99420.388
99423.532
56588.734
57115.494
100040.58
99673.389
57843.346
57604.047
57612.188
99724.407
99649.003
57432.939
30448.78
30299.999
61959.915
62259.858
29931.309
30066.481
60830.428
61130.884
11721.481
17191.7
11788.763
17429.388
22314.579
22186.14
21955.598
21890.952
11694.233
17366.945
11569.007
17165.354
22105.148
21860.669
22230.772
22193.383
11740.293
17384.889
11631.077
17237.205
22258.515
22206.701
21966.817
22178.679
11633.762
17276.88
16941.597
21751.834
21664.654
22066.289
22187.205
11497.152
26444.815
26275.293
25990.468
25832.808
30879.385
30668.598
62501.928
63551.609
62181.92
30454.155
30766.178
62743.992
57668.481
99951.333
99509.331
58169.405
58343.744
100447.61
100053.7
58203.115
30639.058
30792.544
62599.348
62196.675
58074.5
100167.17
99864.508
58229.556
58080.136
99520.757
99888.92
57752.607
30366.957
30141.252
61073.886
61012.329
26120.811
26422.089
26482.104
26361.171
25991.347
26338.647
26430.53
26339.654
26349.384
26513.408
26137.785
25991.56
61985.673
30287.492
30665.61
62516.592
30635.636
30776.817
61766.859
63756.565
100465.39
58091.93
58031.279
99482.741
57420.406
100085.25
99595.513
57859.707
30494.737
30253.773
62034.596
63590.033
100700.63
99775.824
58269.858
58050.783
58202.001
100570.33
99775.566
57974.706
30827.726
30701.474
63214.192
63979.18
4897.9116
4778.3947
4709.6407
4823.0537
10028.544
8910.5094
8956.4782
10094.443
9829.2456
8741.0352
8833.8332
9959.9844
9078.3625
8978.3104
7928.6884
7998.0334
9136.036
8058.2268
8097.9156
9198.3751
12454.497
10379.107
11207.206
11222.728
10393.565
10339.503
10291.298
11096.489
11176.404
12557.444
10993.062
10188.161
10223.455
11053.053
11071.608
10252.589
10207.314
11016.892
12337.461
12426.524
4899.9298
4788.969
4856.4076
10033.193
8927.4937
10097.173
16828.867
19825.496
20107.569
17010.67
23366.513
23672.294
26716.364
26465.884
22994.789
23141.591
19486.447
19731.466
16702.051
16592.682
22961.316
23284.644
22612.541
22772.9
26325.892
25987.463
22698.146
16658.193
16913.333
23493.023
23065.226
26494.864
26106.627
22936.456
19581.402
19967.77
23093.356
16992.699
23577.936
23354.05
16929.378
22997.31
26405.898
26642.347
19873.226
20050.705
27779.892
28128.448
28285.064
28083.749
28114.799
28335.562
27959.655
27667.15
36921.749
36979.459
36457.247
36522.617
77977.65
80865.114
49732.066
108581.8
108212.47
49740.952
81507.878
37200.114
37124.309
36734.659
36805.952
79757.955
108101.19
107669.43
49715.717
49604.745
79217.033
36927.071
36793.245
37059.235
37084.926
80277.77
79925.714
36788.802
36735.233
36266.071
36345.692
78711.662
49594.879
107356.31
107597.05
49557.747
107884.6
107432.46
49398.034
49213.064
417.1001
407.86717
428.85974
429.70409
474.14684
468.29376
72198.82
35267.883
71209.605
34835.743
72116.282
35343.007
72732.464
35785.878
72341.506
35415.918
71747.123
35089.56
70279.026
33751.447
71681.528
34802.584
71939.662
35413.497
70831.778
34775.023
72391.022
35812.192
72763.439
36092.937
73232.583
36804.942
72184.19
35885.387
72687.017
36300.822
73442.018
36855.365
86828.075
66621.173
65473.671
86765.003
85687.592
65750.585
66765.735
86194.822
87148.707
64525.965
62420.066
86838.744
65670.154
86907.616
86579.019
65068.79
36661.156
68043.101
32321.454
69731.126
33412.192
70707.726
34329.944
70868.27
34430.226
71411.112
34952.139
72361.447
35592.763
72100.891
35633.656
71287.971
35169.714
72622.178
36312.552
71624.629
35648.254
72599.966
36237.076
72954.009
36552.852
72356.281
36090.25
73045.654
36540.023
72528.53
36125.32
71398.207
35161.384
43559.542
26154.127
25757.386
26367.802
26727.927
24333.035
24482.255
25006.16
24826.08
24556.361
24877.238
24768.039
24438.07
26751.544
26307.227
25904.023
106264.7
111115.77
40903.287
42677.114
57638.538
59325.427
61025.911
60992.365
44286.722
44282.891
24018.255
23574.327
24933.568
25275.535
22312.243
22396.208
23713.42
23497.473
25059.948
25198.843
25019.305
24879.395
26903.233
26524.397
26370.479
26751.205
106919.79
107416.81
111752.31
111514.96
104719.94
101245.68
107113.38
109810.98
61055.054
58585.579
59505.968
60234.652
60519.843
61508.409
62865.075
61976.611
62841.643
61971.748
62859.418
61970.454
63834.022
21266.721
21431.392
22690.401
22419.055
20368.187
20519.386
21710.834
21462.209
22845.85
22942.624
22716.926
22609.5
23809.088
24040.102
23900.706
23661.811
22299.261
22459.702
22302.712
22126.788
22763.59
22215.255
22034.391
22513.193
23144.412
23317.379
23832.007
23594.401
23470.902
23629.947
23378.427
23204.139
21411.314
21553.625
22669.822
22438.649
20461.429
20584.584
21661.537
21454.213
17954.435
17065.109
16871.812
17725.806
17743.25
17875.117
18841.262
18613.535
19543.017
19691.483
20700.753
20499.472
18676.764
18749.686
19715.777
19564.905
19490.436
19676.505
20790.224
20520.671
18655.257
18804.652
19817.183
19603.189
20685.821
20731.006
20570.833
20524.847
21646.069
21860.328
21793.018
21559.409
17769.492
17952.668
18848.344
18621.503
16909.212
17103.471
17873.748
17655.342
18393.138
18409.588
18253.194
18255.439
19424.418
19550.281
19524.55
19378.286
18123.814
18009.706
17842.148
17974.012
18449.119
18070.579
17894.008
18256.411
18955.477
19109.012
19517.597
19331.864
18954.406
19067.225
19135.161
18973.217
21002.628
21236.366
21706.99
21482.536
20038.991
20155.799
20590.376
20439.065
20168.538
20177.219
20069.849
20036.254
21175.48
21320.62
21245.898
21074.152
41728.639
41438.591
41758.121
42004.605
41606.362
42238.308
41965.535
41289.666
40349.176
40918.392
39930.478
41275.972
40745.427
39723.027
41470.407
40483.206
40456.457
40481.066
40144.906
40750.91
39575.702
38549.016
38968.504
39927.478
41045.794
41377.3
41083.388
41371.09
40585.566
39612.402
40506.17
39504.735
36411.873
37348.191
35900.488
37809.979
34835.36
35383.362
38325.221
36874.827
38458.875
37042.475
36042.324
35831.558
38762.424
37325.777
37818.311
39215.892
36800.56
36293.157
39308.085
38523.131
37853.445
37050.293
35966.922
36810.133
37364.39
35928.398
36271.737
37692.122
37891.811
38149.179
36735.873
36436.142
34877.792
35233.867
35385.982
35742.719
40752.654
40393.934
40518.253
40839.19
39656.724
40368.39
40019.823
39256.246
39001.999
39814.384
38787.843
39968.242
38649.167
37606.918
39468.388
38464.863
40333.37
40446.18
40123.536
40618.703
39567.943
38553.665
38853.809
39812.526
40613.361
41041.584
40756.139
40934.612
40265.446
39298.983
40072.755
39073.882
37595.405
36153.232
36433.624
37838.416
37288.439
35861.185
36402.417
34956.627
35110.676
35399.067
33879.022
34828.671
39849.009
39181.866
39726.312
39322.532
40181.386
40408.095
40541.246
40293.816
40205.456
39706.977
40244.658
39699.556
40697.09
40958.442
40645.68
40867.33
36374.559
37076.321
37245.473
36554.734
36924.91
37615.548
37642.937
36955.511
37778.351
38487.887
38637.124
37932.019
38312.141
39015.159
39023.081
38325.955
36910.819
37579.033
37587.641
36907.236
35939.544
36456.534
37140.49
36615.134
38248.882
38927.78
38955.478
38258.026
37290.613
37827.094
38522.43
37968.217
39599.418
40114.155
40165.479
39634.033
38647.908
39208.044
39734.63
39136.409
40740.893
40804.951
40546.6
40599.1
39557.614
40181.206
40354.636
39684.951
40008.052
39276.398
39806.841
39480.308
40247.5
40454.739
40683.789
40445.129
40127.639
40653.611
40070.821
40599.134
41045.866
41303.339
41100.329
41312.81
37591.127
38291.709
38388.854
37677.707
37969.384
38691.583
38206.009
37494.327
39834.094
38990.283
39694.782
39099.008
39629.64
39413.304
40139.872
38909.925
37401.743
36538.234
37222.885
36720.712
37902.575
38595.487
38790.091
38083.88
38044.456
37326.508
38008.136
37355.205
38694.436
39388.846
38731.582
39436.188
40392.327
40933.143
41132.66
40561.659
40855.557
41405.96
40332.078
40875.832
41646.93
41893.95
41380.385
41600.703
41328.739
41862.284
42137.767
41536.904
32755.614
32191.484
32118.612
32847.959
33469.668
34055.249
33420.86
32929.962
33601.906
33036.763
33697.839
34387.715
35031.109
34306.257
34971.535
30299.964
30994.282
31371.253
30701.783
31003.277
31120.931
31845.435
31696.37
32755.728
31724.876
32425.279
32076.104
32421.622
33121.342
32600.022
33320.889
31470.03
30885.445
30223.26
32359.635
31578.227
32250.235
33136.195
33834.55
34143.065
33451.384
34051.582
34764.682
33838.842
34548.686
35233.434
35557.644
34557.22
34868.041
35289.25
35501.861
36192.621
35989.958
27738.299
28113.987
28346.367
28731.396
29386.276
29627.263
30036.642
28993.173
28393.762
28367.895
29002.292
29039.024
29724.169
29667.336
30409.338
30324.465
28295.072
28936.118
29567.926
27013.841
27321.032
27217.006
27589.834
27836.093
27841.203
27630.537
27566.716
16857.958
17927.509
29026.293
29395.212
35755.759
35308.015
29032.499
28187.34
34501.735
35297.237
15829.13
28048.191
28231.87
28248.27
28489.417
28091.508
28070.355
27878.384
27801.626
18462.022
17402.797
17064.013
18125.795
29159.901
29502.584
35968.272
35525.483
30086.85
29739.643
36106.774
36404.289
27339.444
27484.551
27554.832
27752.438
27748.322
28030.322
27564.59
27770.479
17878.487
16833.895
16953.549
18014.83
29489.946
29017.891
35379.093
35811.017
28908.505
28687.833
35024.52
35207.558
28098.274
28278.391
28909.503
28737.009
29419.798
29584.491
30101.288
30249.907
29197.296
28274.458
28902.659
28556.194
30247.105
29579.045
29882.911
30553.986
15837.845
14842.47
14919.982
15934.645
15032.864
15360.418
16381.424
16044.745
29630.353
28783.073
29418.085
29004.362
30763.281
30099.234
30302.191
30962.459
29206.679
28648.08
29311.255
28579.219
30718.632
30020.189
29878.06
30538.339
32340.392
31473.86
32196.018
31649.749
32952.602
33684.948
33783.853
33073.058
31229.932
31925.843
31458.717
32203.631
32979.258
33723.833
32653.39
33354.255
34536.078
33802.555
34545.309
33815.96
36023.798
35309.309
35284.966
36008.333
34162.951
34891.057
33940.133
34674.694
36157.327
35439.744
35651.293
36370.674
31633.294
30816.4
31545.389
30939.061
32310.002
32370.486
33051.247
33087.914
31956.766
30962.382
31689.501
31253.65
33190.042
32453.295
32702.657
33426.179
35234.4
34429.775
35158.199
34512.848
36610.604
35908.474
35981.945
36700.109
34072.517
34778.185
34478.722
35213.264
36686.319
35971.66
35513.623
36209.213
10930.202
11147.301
12228.3
11967.006
10763.742
10814.711
11844.597
11821.681
12861.652
12847.107
13849.034
13898.255
14337.098
13284.793
12992.676
14016.511
34583.622
33677.87
34395.632
33887.522
35133.401
35823.338
36004.746
35311.139
34462.34
35174.051
34459.593
35176.854
35920.079
36611.692
35921.458
36623.97
31628.311
32372.05
32489.22
31779.735
31681.566
31854.934
32623.138
32387.69
33961.745
33153.265
33896.892
33238.261
33127.161
33836.79
33422.017
34182.692
31754.168
30747.284
31470.936
31064.649
32224.479
32947.337
33178.069
32477.863
32291.294
31500.571
32234.766
31594.195
33000.628
33727.512
33029.092
33741.543
34650.138
35387.856
35437.477
34701.164
34953.676
35705.064
34564.833
35283.224
36857.453
36930.523
36149.12
36203.741
36034.894
36481.897
37210.385
36745.519
28898.892
29093.128
29538.458
29721.931
30400.024
30908.084
31078.823
30228.423
28978.619
29004.247
29645.412
29651.547
30374.001
30322.943
31098.714
30990.692
29055.28
28103.385
28714.555
28447.462
29375.696
30044.944
30378.827
29715.644
29573.717
28790.986
29419.296
28950.865
30101.058
30785.508
30240.304
30905.573
27390.956
27684.42
27591.796
27939.971
28265.02
28443.866
28099.671
28203.756
17434.641
17140.86
18130.513
18477.975
29027.047
28428.832
34781.741
35396.154
29798.622
29717.92
36162.752
36192.593
28163.454
28321.089
28356.513
28571.723
28403.024
28475.937
28197.994
28227.304
18543.157
17491.447
17385.756
18445.288
29868.279
29915.243
36395.117
36274.809
30082.56
29776.146
36229.968
36468.366
16201.834
15256.883
15428.606
16433.77
15363.975
15460.982
16477.665
16373.774
27848.694
28048.036
28058.273
28304.048
27390.42
27426.197
27157.165
27155.991
18479.665
17492.511
16859.662
17827.951
27857.09
28061.403
34431.75
34159.859
29350.492
29128.05
35496.079
35709.697
27309.766
27575.401
27499.293
27819.586
27845.382
28127.034
27668.032
27880.525
18096.949
17117.639
17254.194
18258.781
29369.317
29050.614
35419.65
35726.781
29015.79
28481.355
34815.189
35328.335
27997.669
28307.267
28910.931
28604.379
29262.071
29565.464
29917.052
30209.594
29244.629
28371.162
29006.113
28625.96
30369.404
29695.114
29914.586
30567.295
16179.729
15233.687
15336.128
16295.346
15024.449
15594.441
16544.239
15936.681
29391.003
28580.795
29206.501
28789.236
30536.637
29881.292
30039.122
30672.877
28488.144
27912.206
28551.837
27891.457
29928.3
29242.273
29127.646
29755.013
14310.169
13325.611
13368.863
14413.087
12321.692
11269.153
11197.396
12295.97
11187.27
11218.177
12317.937
12264.636
14440.344
13384.288
13312.749
14349.063
11265.853
11584.155
12639.431
12237.908
11291.136
11265.6
12304.121
12351.309
14282.341
13298.066
13367.76
14366.828
14639.827
13647.86
13178.165
14108.218
31998.621
31234.167
31937.464
31333.662
32673.108
33380.224
33386.646
32703.176
30412.75
31077.546
30649.141
31371.653
32124.027
32843.942
31776.066
32449.602
34781.05
34099.987
34802.534
34086.077
36207.66
35529.325
35499.464
36186.841
33141.833
33824.8
33575.017
34287.335
35728.322
35026.916
34540.815
35219.202
31552.615
30604.931
31305.631
30880.017
32042.976
32273.194
32755.958
32972.069
31931.654
31088.121
31811.85
31249.682
33291.622
32569.539
32658.278
33359.498
34387.432
33483.397
34199.312
33686.307
35643.769
34943.556
35123.867
35825.966
34078.108
34784.773
34030.959
34752.344
36200.489
35501.284
35525.153
36223.863
13291.78
12631.844
12722.453
13402.761
12980.533
12075.608
12162.893
12878.905
12284.597
12384.44
11638.099
11718.065
11927.009
11226.941
623.09036
629.548
834.45921
827.2641
982.93557
1189.7314
1198.7771
983.7458
989.66488
1211.2687
1217.8233
988.14391
625.87102
613.42739
642.82456
630.22984
828.26137
862.67601
838.62304
846.17304
1000.5099
1211.0594
1218.9127
1005.0415
974.63831
1189.0227
1197.5641
974.14321
988.14354
1204.6233
1210.1674
991.187
1013.676
1022.7489
1248.8241
1262.5394
5536.3273
4393.0178
5451.831
1918.29
3383.9996
5632.105
4517.0749
4614.485
5691.0042
3439.7618
1975.1937
2009.3844
3577.0652
9764.188
8691.9383
8614.9753
9686.8923
7633.903
6575.0606
6494.2834
7550.2531
6739.4318
6720.1432
7826.3042
7789.0522
10039.472
8922.7742
8828.7546
9874.7775
10194.857
9086.9455
8934.0177
10069.537
7991.6535
6872.055
6691.575
7812.0369
6729.3398
6680.2906
7820.935
7851.6889
10086.766
8938.6919
8956.8174
10075.35
5771.9054
4639.3276
4477.8217
5588.3878
3527.6861
2011.8058
1943.5323
3427.6374
5567.8305
4433.1434
4495.2428
5621.5003
3337.4335
1901.9041
1928.5006
3437.2787
10185.583
9062.178
9057.6894
10186.442
7946.2849
6806.8311
6798.6852
7932.4672
7129.1826
7072.6922
8229.1939
8204.3013
10483.225
9347.883
9231.7692
10256.433
5689.5944
4543.2325
4530.4711
5671.7947
3432.1284
1954.9835
1953.8923
3446.0692
5922.7611
4732.7444
4879.197
6031.4197
3572.8798
2058.3868
2135.1929
3759.171
39967.907
39692.644
40428.477
40193.833
39733.456
39207.249
38287.165
38840.289
40920.247
40741.366
40623.02
40432.888
39134.072
39901.992
38905.582
40109.877
37553.424
38377.195
37200.781
38074.297
37559.53
36654.994
36641.383
35695.027
39419.188
39110.764
39157.012
39486.585
37708.514
38607.902
37681.062
38634.604
34589.149
33276.421
34276.121
35572.518
36588.419
35260.065
36601.819
35251.473
32315.648
33328.122
34288.271
34329.626
37192.443
35845.744
36432.018
37760.845
37982.203
36582.054
36293.481
37731.308
34884.769
35476.115
35586.738
35225.894
34110.574
34721.91
35351.378
34716.828
35699.173
36333.453
36328.835
35665.595
36638.712
35332.923
35962.682
35984.231
37674.795
36970.925
37627.308
36992.52
38660.95
39194.867
39036.972
39584.194
40041.359
40320.313
39637.183
39895.132
39648.539
40180.987
40024.039
39506.659
40679.527
40618.57
40858.874
40466.427
36579.212
37280.167
37052.61
37779.142
38195.561
38369.992
37444.454
37590.955
38277.732
38775.245
38859.273
38345.253
39465.973
39192.623
39395.906
39288.656
35938.973
36611.656
36958.241
36273.411
36908.634
37587.138
37418.48
36721.151
38344.812
37283.99
37977.076
37640.557
38264.662
38960.021
38816.082
38110.705
37340.265
38035.019
38158.85
37446.469
36939.5
37426.051
38129.459
37635.571
38727.212
39437.942
39591.332
38864.159
38328.424
38829.93
39546.265
39034.306
36763.939
37472.448
37474.616
36757.183
36900.723
37615.215
37835.007
37119.773
38176.739
38899.092
38929.353
38190.204
38334.141
39072.486
39278.652
38547.813
39614.985
40174.646
40233.58
39657.629
39805.151
40380.516
40558.394
39997.938
40640.042
40922.69
41024.996
40709.145
40865.659
41197.83
41280.839
41020.982
40141.92
40686.963
40867.817
40306.606
39734.861
40255.44
40801.628
40253.755
41138.352
41405.464
41602.351
41324.678
40693.438
41257.466
41507.352
40885.963
41475.135
41481.792
41189.257
41709.033
40669.892
39691.149
40050.514
40985.535
40926.069
40597.461
41586.915
41300.978
40786.502
39800.29
40037.988
39015.474
37508.451
38531.76
37100.421
38908.184
36075.247
36486.247
37818.017
36351.621
38628.856
37184.303
36140.578
35263.075
40974.525
41023.809
40757.819
41163.086
40248.975
40532.519
39274.005
39645.487
41138.658
41343.082
41139.289
41385.533
39823.504
40718.22
40660.15
39728.051
38109.269
36681.778
37195.481
38552.47
38605.951
38733.762
37378.264
37203.436
35646.329
36215.151
36204.303
36436.968
43177.851
44212.101
60149.39
61016.501
61768.268
61264.938
44928.114
44474.473
25794.244
25377.842
26234.109
26584.466
23967.264
24095.504
24858.501
24668.857
24993.859
25463.674
25318.815
24862.432
27334.416
26905.869
26402.07
26836.543
107134.09
108268.28
112386.09
111558.97
107232.57
105972.24
111037.78
111842.19
41752.973
43730.382
59059.601
60788.318
61288.349
60943.091
44216.075
43890.624
24432.806
24960.447
24795.551
24319.933
22626.599
22662.575
24203.575
24032.483
24467.628
23933.61
25543.148
25943.225
26694.973
26291.111
25800.43
26244.802
106529.61
107721.98
112311.83
111511.41
108961.28
102926.55
106393.81
111422.96
60039.289
61772.959
62664.794
60983.266
62016.68
63620.942
63019.107
64542.468
62847.208
62269.002
63186.947
61945.564
65109.629
64176.199
63801.331
64724.485
22558.884
22940.522
22769.29
22398.151
22549.844
21825.08
21657.974
22314.4
22778.455
22925.407
23653.242
23422.433
23989.056
24163.692
23736.638
23558.589
22085.281
22660.293
22455.14
21945.819
20419.464
20503.487
21859.191
21691.922
21477.778
21526.086
22985.403
22799.522
23570.955
23774.938
23209.504
23058.233
62927.144
61157.942
62100.794
62029.629
64061.919
63111.144
63878.271
64807.14
63223.912
62805.214
63755.821
62304.803
65711.209
64760.715
64189.242
65130.764
65253.202
66286.952
66493.872
65523.209
64847.923
65706.279
66732.63
65830.566
68553.922
67397.774
68436.69
67546.529
66882.941
67871.709
67819.254
68837.796
66180.728
64733.582
65795.751
65199.618
66923.104
67984.877
68278.573
67249.537
67065.339
66192.678
67214.602
66084.172
68299.121
69316.426
68124.98
69138.533
69479.033
70472.055
70556.513
69567.366
72424.025
71572.447
71496.854
72501.707
69861.92
68875.813
70831.774
69831.282
70326.268
69054.884
70077.433
69320.954
72078.696
71130.133
71356.322
72296.957
70155.083
71128.122
70334.57
71302.267
73194.119
72294.631
72131.441
73040.629
43623.489
44053.906
60360.972
60794.646
60709.003
60082.897
43700.86
43209.903
26201.565
25815.508
26068.235
26440.208
24370.374
24539.923
24705.278
24541.169
24007.99
24329.395
24202.061
23879.163
26135.226
25698.271
25312.799
25736.724
104537.24
106247.82
111182.41
109798.2
106617.04
106540.34
111203.55
111364.03
42853.833
43695.078
59686.828
60440.504
61297.511
61345.484
44595.111
44755.835
25500.543
25052.263
25722.61
26107.48
23627.957
23718.816
24359.855
24196.15
25456.852
25393.938
25235.178
25275.077
27185.142
26774.794
26825.272
27209.776
107582.95
107611.03
111765.71
111745.96
105913.35
105009.61
110032.77
110768.11
61373.413
61797.235
62302.048
62694.265
63647.623
64247.808
64567.793
63300.513
61735.957
61087.109
61988.662
62686.213
63706.683
62954.824
64690.083
63883.496
62348.16
60711.323
61675.597
61444.38
62706.127
63701.95
64233.219
63312.163
63253.778
62303.493
63232.184
62362.678
64227.425
65191.21
64196.047
65119.664
22421.209
22581.018
23172.522
22962.149
21334.121
21457.984
21993.546
21828.322
23104.177
23010.111
22806.789
22883.126
23965.61
24161.525
24226.78
23999.053
21773.101
22001.11
21837.113
21619.364
22408.892
22250.003
22053.266
22201.702
23179.057
23363.577
23514.373
23306.403
22960.754
23131.827
22850.25
22682.981
66748.696
65087.612
66122.431
65781.243
67224.511
68267.504
68806.944
67801.876
66119.184
67110.583
66718.96
67727.397
68789.363
69792.994
68165.372
69170.89
66462.191
64067.335
65113.176
65505.326
66223.166
67501.508
67261.129
68487.95
66651.733
66103.837
67096.463
65691.577
69137.151
68149.391
67698.898
68695.111
70431.04
68301.443
69287.156
69482.013
70309.478
71415.28
71223.193
72311.352
69705.113
70672.444
70134.791
71082.033
72940.779
72060.025
71678.602
72588.567
70811.472
69321.096
70326.335
69827.893
72296.324
71363.929
71820.96
72750.406
70193.232
71175.589
70801.496
71760.551
73630.52
72740.4
72185.869
73101.984
17604.028
17671.217
17494.897
17471.818
17946.154
17969.114
17790.635
17778.037
18876.403
19030.202
19017.481
18870.741
18568.55
18694.684
18606.233
18465.997
18540.866
18338.349
18199.175
18384.583
17635.061
17354.812
17177.39
17466.143
18173.558
18307.271
18652.619
18489.204
19369.804
19501.325
19674.409
19493.642
20260.973
20419.39
20855.775
20705.419
19251.952
19313.035
19695.046
19603.855
20802.345
20660.813
20532.235
20652.096
21671.435
21842.906
21973.132
21764.945
20999.823
21229.054
21289.807
21118.013
19985.682
20105.008
20118.929
20017.697
19636.405
19765.413
19655.137
19532.23
20736.329
20879.522
20715.743
20565.191
17945.82
18110.125
17985.468
17835.218
18111.671
17677.254
17507.02
17927.926
18565.096
18715.009
19214.644
19029.501
19181.039
19284.378
19076.896
18941.135
17710.046
18313.636
18121.042
17620.23
16639.844
16791.539
17581.899
17477.255
17564.398
17658.556
18618.444
18491.454
19217.67
19382.65
18780.562
18662.715
19851.5
20455.383
20289.8
19764.594
18509.21
18565.373
19665.154
19552.748
19457.74
19526.209
20755.357
20605.564
21362.293
21548.055
20973.405
20850.478
20619.648
20828.372
21452.237
21238.045
19641.081
19743.52
20305.642
20157.273
20209.079
20480.299
20373.782
20100.057
21561.947
21702.809
21389.935
21236.382
74113.965
73029.703
73919.893
73235.886
74088.76
73952.428
74925.428
74807.85
74816.272
75615.219
74993.4
75788.917
75673.188
76529.353
76450.932
75770.879
76376.647
76548.99
77119.872
76945.54
77384.14
77566.855
77806.631
77587.376
77757.735
77254.612
77801.585
77194.299
78255.903
78188.143
78487.525
78358.78
73353.999
74226.272
73438.528
75108.711
75892.704
75277.138
75743.366
76775.959
76299.201
76722.196
76907.167
77420.8
77258.039
77232.761
76051.996
76053.704
77125.294
77665.314
77780.649
77823.08
77981.25
73233.093
73680.927
74106.287
74552.982
75427.492
76215.903
74986.457
75770.247
74885.861
74514.075
75340.732
74019.236
76171.982
76922.102
76527.314
75748.605
74042.794
72138.541
72987.421
73208.791
73843.888
74585.396
75613.243
74878.635
74357.977
73821.932
74642.314
73502.184
75471.847
76207.346
75219.888
75987.076
76519.695
77069.244
77529.786
76970.601
77642.075
78182.898
77264.861
77826.433
78205.093
77493.925
77678.575
77984.553
78249.94
78626.176
78835.341
78385.58
77266.332
76634.143
77829.22
77300.234
75808.828
73749.857
75027.095
72854.751
77945.593
78465.145
77905.131
77305.592
75687.863
73466.29
76381.701
74250.437
70217.785
67037.866
71194.982
68085.068
65819.268
64730.289
71625.659
68433.201
70778.359
67531.425
65138.433
66096.685
75411.477
76710.777
74534.149
76019.171
74343.75
72099.656
72682.61
70286.562
77527.279
76865.476
76596.654
77287.3
72674.981
75249.423
73053.671
74919.885
67448.343
69364.434
64141.029
66125.36
63772.975
61745.852
70390.174
67196.078
66708.161
69961.793
64906.47
64353.477
72613.079
74861.844
75433.034
73353.936
76507.883
77157.615
77438.324
76918.7
78165.797
77650.682
77972.958
685.4014
686.47399
763.74566
787.40951
672.86016
667.83757
756.66035
754.20745
936.19127
1046.4431
1011.4274
912.95266
925.69086
928.96158
906.33121
890.661
1098.3665
1070.4775
1035.2716
1030.9459
1009.8141
997.75287
1030.7395
1028.8781
1534.5552
1520.4185
1447.0661
1454.3237
1416.7087
1419.7683
1464.5224
1472.2213
796.84452
1043.6893
1069.9239
1083.4709
1073.4113
1499.5995
1504.4816
3510.3348
5082.2803
5260.8582
3582.9398
3506.2967
5109.9292
5146.7052
3517.6957
9036.5944
8759.0805
8742.1482
9133.445
8990.646
8970.6592
8678.3537
9337.1368
5383.4314
3720.7052
5371.6639
3736.5568
4041.6131
5729.1007
5623.1912
3952.8236
9717.4864
9585.4963
9373.4452
9641.1592
9364.3572
9107.3358
9085.7206
9380.3359
10552.682
10640.072
11006.291
10897.397
11151.997
10927.899
10826.744
11136.623
12273.438
12291.08
12258.807
12365.522
12044.841
12243.926
12399.745
12183.933
11902.259
11873.307
11999.527
12117.047
10647.604
10277.69
10325.892
10723.533
10524.93
10194.467
10553.25
10861.527
12030.506
11763.802
11949.424
12167.467
13324.439
13147.135
13226.853
13363.729
13301.891
13180.503
13206.497
13379.936
14307.767
14364.392
14553.464
14524.056
14404.22
14419.227
14517.269
14465.38
13313.078
13601.112
13631.781
13350.59
13166.633
13298.599
13459.608
13423.509
14014.64
14184.208
14511.58
14405.61
14766.253
14827.648
14470.716
14409.547
15552.936
16007.762
15928.925
15481.123
14906.626
15029.909
15518.267
15418.383
15803.402
15911.089
16548.08
16447.01
17056.676
17163.144
16634.052
16551.304
16479.482
16640.205
16941.292
16833.805
15447.373
15499.879
15741.576
15692.892
15659.302
15655.572
15635.343
15606.159
16818.721
16885.207
16819.114
16707.918
16218.661
16403.671
16595.917
16428.941
15252.786
15364.9
15469.855
15396.183
16053.537
15829.299
15819.945
16042.334
17037.456
17118.105
17346.801
17227.962
14189.648
14316.434
14294.485
14269.169
13141.61
13147.758
13006.212
13115.2
13358.268
13083.469
13235.43
13497.994
14530.107
14479.323
14738.344
14762.73
13497.708
13137.129
13201.626
13486.514
13276.915
13226.76
13295.171
13347.234
14479.969
14527.586
14540.688
14496.098
14335.215
14380.686
14607
14498.45
16740.373
16902.342
16822.928
16735.327
15669.413
15708.621
15667.705
15623.768
15621.216
15518.905
15440.034
15511.433
16499.535
16600.983
16625.499
16486.797
3592.7552
5204.4502
5528.0145
3790.093
3423.8436
3493.142
5005.9756
5116.4237
8651.5201
9098.8139
8592.5153
8990.6999
9282.4478
8795.8533
9125.6632
9623.1081
4985.8936
3323.4651
4858.4388
3408.3204
3471.9949
3450.0239
5062.2556
5005.525
9037.996
8735.4074
8521.3963
8891.7051
8376.5203
8746.3281
9027.3676
8576.3741
11604.284
11866.417
11983.856
11839.521
10640.519
10283.339
10052.996
10447.504
10373.379
9956.7767
10249.095
10665.081
11893.59
11622.182
11859.487
12143.919
11922.139
11803.657
12010.294
12113.586
10194.853
10590.612
10713.978
10276.675
10312.681
10651.38
11122.32
10804.943
12293.759
11843.011
11986.915
12387.167
9327.5061
5370.6446
3703.0216
5286.2383
3766.5218
3932.0215
5599.1533
3882.202
5510.9301
9218.3882
9643.187
9442.5838
9498.5056
9231.3922
8931.6419
9052.4956
9384.3063
12196.113
12268.283
12281.735
12318.372
10698.053
10882.202
11118.142
11036.578
10586.672
10497.259
10885.497
10968.57
12141.199
12101.222
12268.493
12313.822
12410.819
12242.706
12369.96
12602.313
11000.988
10596.138
10765.605
11209.899
11315.169
10775.423
11145.997
11674.349
12857.101
12356.106
12487.086
12944.664
16037.739
16237.085
16876.304
16668.594
15135.079
15288.128
15761.842
15662.626
15976.138
16000.614
15948.543
15956.699
17133.941
17214.797
17207.782
17122.282
14184.037
14370.363
14600.144
14545.144
13292.675
13382.646
13452.757
13462.078
13472.032
13447.765
13511.435
13549.622
14715.38
14714.413
14736.749
14732.355
14060.351
13632.658
13637.695
14024
13801.337
13566.919
13587.898
13847.995
14681.604
14738.129
14985.463
14930.87
14661.066
14756.779
15120.584
14989.515
16866.882
17034.664
17298.429
17196.475
15835.946
15883.649
16128.464
16071.676
16118.845
15836.429
15743.688
15983.905
16813.535
16912.718
17129.046
16964.607
16027.298
16232.479
17020.657
16783.866
15151.887
15301.178
15989.5
15834.068
370.89226
409.2498
656.51033
645.3497
610.94723
621.72217
1755.1661
1712.4508
409.16901
647.20205
660.39601
613.09344
618.8135
1739.2111
1748.2927
533.47532
531.73844
499.98217
497.82684
1337.0879
1337.172
1021.8905
1020.1828
4056.5568
4089.0543
4342.1875
4298.122
4097.8748
4026.5317
4265.3529
4340.2003
4891.2828
4767.8863
4766.1188
4880.3375
9947.8809
10044.23
8913.0442
8834.3266
9148.627
9054.7367
7985.7286
8056.641
7968.1655
9029.2758
9132.1816
8047.9171
9894.9878
8797.2569
8891.8906
10017.748
12330.368
10296.291
11112.505
11163.575
10337.942
10981.495
10243.891
10183.417
11073.254
12461.991
11013.906
10207.413
10252.452
11082.463
11032.709
11108.22
10290.062
10228.177
12327.89
12397.64
4874.6512
4990.2403
5000.0734
4877.4884
10090.326
8970.9153
9026.1279
10170.814
10133.2
9014.2689
9069.0241
10203.858
8123.5908
9201.4508
9259.0199
8164.3528
9238.7093
8159.4714
8208.36
9307.6389
12544.275
10457.501
11276.055
11323.738
10496.588
11188.926
10430.536
10381.938
11264.266
12631.451
11187.566
10375.457
10418.835
11254.822
11166.057
11207.541
10390.759
10355.311
12441.064
12567.772
4908.5278
4801.9129
4918.7262
5037.8091
10076.626
9979.3768
8879.6885
8952.5656
10154.949
9043.5725
9138.3855
10283.692
9378.9482
9280.0897
8201.6342
8274.2501
9195.1906
9105.0995
8050.4887
8115.481
11308.921
10493.443
10527.94
11351.25
10461.02
10514.215
11352.168
11271.168
12674.04
12604.283
11140.548
11061.601
10315.56
10265.991
12451.141
12574.438
11164.113
10356.014
11234.559
10413.179
4945.1833
4823.5052
4841.0247
4980.4124
10051.089
10188.078
9037.433
8939.5389
9278.8499
9166.08
8093.3805
8169.687
9215.0655
9161.0787
8075.3043
8108.9433
10053.998
10131.147
8977.4246
8928.287
12521.48
10445.884
11272.147
11315.87
10481.525
10386.065
10329.272
11133.283
11223.521
12634.478
11153.104
10337.029
10377.731
11218.69
11115.912
10303.615
10343.972
11165.75
12379.62
12528.325
19884.081
19608.766
16667.894
16849.656
23341.996
23060.333
26068.785
22656.416
22794.67
26288.373
19339.805
19528.679
16559.5
16489.874
22960.439
22737.923
25905.395
22444.688
22359.19
25681.567
19349.497
19722.537
16712.258
16465.613
22780.152
23172.692
26082.104
25722.98
22371.611
22597.509
19671.455
19814.822
16804.672
16762.357
23273.118
23082.317
26044.611
26231.369
22753.523
22687.145
16731.503
19641.428
19995.681
16969.243
26059.441
23457.045
23072.019
26413.853
22908.96
22684.107
19865.471
16952.685
17003.504
20022.254
23483.639
23283.343
22989.561
26482.607
26285.016
22918.631
17043.127
16845.409
19787.41
20087.898
22864.674
23244.842
23555.52
26284.688
26525.306
23014.618
16685.482
19472.242
19664.369
16614.593
23114.806
22591.113
26070.531
22882.768
25825.639
22495.034
27687.94
28015.214
28107.528
27925.657
27686.473
27447.569
27950.02
28115.398
36764.364
36803.458
36340.717
36374.502
79976.131
82404.921
48684.268
108286.23
107668.38
48743.451
36590.185
36650.768
36936.756
36999.936
83609.457
82351.956
108422.85
108223.63
48870.279
48957.705
36729.576
36825.536
36816.187
36770.695
81605.558
82630.561
108352.71
107365.38
48935.134
48918.978
82590.668
36545.611
36441.242
35961.331
35997.835
79626.613
48911.001
107525.83
108291.81
49125.771
27341.418
27668.522
27817.522
27658.145
27697.616
27879.992
27501.787
27333.029
36330.281
36409.223
35915.488
36030.792
81615.78
79681.524
36222.776
36268.088
36519.195
36579.703
80749.593
82186.055
107507.31
49068.353
49025.924
108204.77
107865.46
108202.82
49124.412
49098.318
107591.47
107372.76
49004.386
49075.603
48801.827
107362.26
107702.37
48798.239
36561.716
36515.719
36429.487
36478.187
80520.367
81235.133
35919.394
35967.503
36192.7
36158.815
79352.844
79395.308
19871.502
19683.57
16812.469
16884.96
23324.393
23096.144
22810.967
26289.159
26047.555
22714.627
16981.333
19931.542
17175.49
20220.576
26448.131
23410.99
23695.507
26679.291
23168.926
23025.537
20078.648
19915.993
16972.483
17027.148
23597.994
23392.86
26614.212
23089.605
23016.158
26413.867
16675.336
19590.827
19998.864
16944.538
23058.008
23502.663
26074.182
22692.037
22952.922
26488.654
20096.425
19952.859
17007.879
17052.882
23409.998
23610.226
23109.415
26636.383
26433.686
23032.774
16763.503
19696.198
17016.311
20078.076
22801.964
23188.777
23589.322
26215.162
26583.843
23034.016
19803.778
16839.317
17024.97
20090.407
23307.622
23606.203
26607.287
26366.471
22918.016
23060.643
16639.029
16554.65
22890.431
23132.309
22620.569
26136.086
25876.632
22505.833
19422.921
19628.784
28232.401
28029.785
27781.423
27559.083
37056.199
37115.38
36716.068
36769.621
81176.807
82156.352
80645.409
36690.89
36497.199
36949.387
36966.636
81457.109
49214.161
107409.33
107277.14
49530.33
49477.481
107903.71
108162.05
49572.73
36791.237
36787.107
37005.548
36956.333
81104.851
80197.762
49556.319
108420.11
107974.44
49555.393
49710.883
107965.26
108511.89
49808.72
36564.881
36513.258
36232.766
36268.84
78832.592
78254.624
27853.156
28188.677
28256.121
28072.086
27711.429
28093.676
28198.029
28044.565
28085.518
28270.897
27901.428
27682.879
80994.74
36513.2
36298.247
36768.641
36832.454
81692.957
36658.452
36622.177
36916.958
36996.55
80152.685
82771.845
107880.07
49210.199
49278.388
108253.53
49057.159
107885.7
107392.64
49202.304
36650.457
36744.435
36270.913
36324.225
80721.757
82643.557
107870.92
107176.1
49166.679
49177.758
49045.363
108015.15
108294.75
49223.959
36987.23
36950.634
36834.573
36946.768
81495.016
82026.126
10148.505
9706.5357
9659.966
10092.336
10290.152
10227.92
9538.2103
9583.2103
9993.9761
9328.3063
9446.9634
10138.569
9842.5348
9421.0174
9994.2871
9551.5765
14746.768
14889.415
14324.2
14128.916
14329.742
12737.35
12873.524
14537.642
12933.612
14601.57
14525.686
12896.156
14934.207
14404.768
14306.94
14926.543
14620.067
14716.73
14166.779
14018.823
14227.443
12623.831
12730.518
14392.746
14312.1
14311.528
12686.271
12702.61
14659.022
14103.716
14080.184
14729.832
11881.416
12834.223
12864.327
11911.626
11837.269
12777.483
12892.199
11914.443
12047.848
11966.972
10906.672
10958.963
12004.347
12046.463
10975.228
10933.21
13032.184
12886.95
11951.236
12052.293
12184.5
12078.758
11013.838
11085.178
12219.551
12222.889
11126.171
11133.377
13078.551
12098.75
12087.222
13050.113
17237.648
17576.665
24693.936
24162.443
20108.352
20478.686
17707.595
19343.654
19054.364
17452.056
18827.744
19207.876
24424.753
24795.96
20354.199
20568.594
19000.675
17380.919
17617.01
19264.864
18704.052
17118.815
17402.985
19033.865
24009.393
24497.529
20280.829
19993.204
24865.874
24498.115
20599.298
20331.75
10130.295
9698.6287
9651.1328
10064.033
10218.307
9543.1945
9585.4163
10281.971
10061.878
9913.6729
9490.5574
10024.425
14767.741
14838.424
14305.358
14175.925
14368.011
12771.564
12867.215
14515.475
14891.836
14377.525
14315.63
14929.057
25239.596
25587.51
27662.005
27971.179
32161.808
31800.338
24800.783
25202.347
27194.604
27590.343
31726.523
31231.74
25403.143
27770.69
24927.989
27309.434
31950.348
31395.576
25475.74
27864.537
25188.057
27589.994
31703.998
32062.246
33912.257
33281.978
34406.14
33737.775
34513.896
33921.556
34162.667
33547.763
34270.196
33648.027
34573.998
33917.335
34222.915
33565.78
33743.651
33086.418
37869.865
44365.724
37419.456
43776.638
17953.594
17927.319
16997.721
22180.84
22132.865
16978.567
17918.998
44520.91
38018.557
37692.275
44092.309
17934.464
22143.011
22116.973
16973.217
16986.075
17933.996
44361.395
37695.937
37929.85
44382.716
17918.114
17924.604
44177.856
37676.964
37286.22
43692.147
17951.951
16986.039
22141.945
22113.623
16973.133
22176.372
22128.223
16978.901
16999.061
436.56668
436.23656
478.98691
485.02724
432.57542
431.70634
474.35669
478.73555
456.72377
454.07655
569.47967
568.99286
86649.735
65334.3
64249.61
86070.733
86962.932
65180.799
65947.981
86901.476
86918.306
65410.764
64689.533
86777.706
87175.733
62700.556
64478.252
87114.899
86082.473
65146.578
63891.51
85753.324
86404.846
65690.072
66204.202
86411.663
67054.396
85915.392
85957.524
65655.148
66216.78
86187.593
86153.971
67213.193
14616.369
95948.401
95713.651
14622.489
14627.716
94090.255
94889.371
14618.688
14616.957
96118.525
95443.727
14624.846
95924.178
14615.509
14622.233
95406.991
67851.6
31983.387
60072.822
85704.489
85928.64
62155.936
85729.681
63599.285
63764.172
85890.121
64528.166
85944.337
85945.379
65735.737
65649.453
85352.924
85114.41
64672.374
85011.785
66465.321
65219.002
84875.669
85487.67
66346.866
66838.084
85308.977
66049.163
85373.444
85423.044
66926.302
66256.225
85559.497
85741.395
64663.132
114234.97
62070.447
102016.51
99502.052
100434.1
102897.36
97219.126
95313.213
96144.061
98127.924
93784.444
95461.079
97491.417
95742.689
102418.91
99859.796
98008.315
138826.51
132509.54
111795.63
59434.978
61241.633
113483.62
82804.539
83380.506
62633.814
83533.867
83879.377
62730.11
114298.41
114408.88
96496.823
93991.82
97950.496
100383.41
91778.549
89977.231
93865.352
95749.284
96142.688
96900.842
98843.213
98095.449
103526.82
101098.34
100354.51
102837.1
137874.21
136045.71
130119.26
131867.47
139611.14
141262.63
135299.63
133710.08
85176.082
84061.957
84888.265
84513.647
85561.322
86507.598
86423.978
85657.199
85414.358
84465.466
84923.214
84878.794
85280.954
87998.516
86329.327
90067.947
91797.563
84445.395
82799.231
86325.562
88061.501
88064.408
88732.598
90625.641
89963.743
94727.071
92802.861
92029.486
93951.002
85813.045
87085.01
88987.058
87680.297
87975.637
87089.674
88969.182
89920.311
93099.941
91163.552
91987.323
93936.523
93203.649
91217.701
89711.55
91613.625
88196.499
86398.458
90046.204
91759.457
84410.815
82637.105
86214.396
87952.813
69735.088
67279.383
69280.185
71871.822
73414.558
71468.076
74168.508
76247.868
80749.64
79162.118
82458.196
84115.82
77256.216
75427.217
78465.267
80326.925
81004.565
79457.459
82600.309
84301.651
77656.962
75962.872
78603.335
80541.618
79694.381
80252.257
82359.593
81813.405
86604.417
84619.259
83983.669
85976.511
74013.524
72221.754
74312.689
76352.471
70147.615
68097.362
69539.301
71904.893
70023.92
70401.908
72848.611
72473.277
77836.116
75469.253
74965.461
77273.79
68963.212
69462.361
71752.636
71223.368
70140.667
69858.951
72156.455
72509.064
76836.884
74604.626
74993.904
77279.103
76437.647
74194.351
73503.289
75661.252
85039.801
83233.497
83914.102
85800.7
81156.394
79108.049
79582.063
81718.954
77818.175
78720.167
80801.904
79863.009
84947.711
82979.183
81901.147
83775.165
77334.844
76799.441
77169.695
77610.758
77341.915
77929.362
77447.464
76744.198
73894.734
75306.452
73254.492
75795.761
75192.834
73051.38
76046.281
74052.75
75597.896
75809.013
75121.779
76170.187
73487.463
71289.3
72050.915
74087.833
76478.74
77065.526
76516.269
77068.165
75073.131
73057.982
74952.391
72846.284
66483.762
68630.032
65463.168
69524.021
63173.901
64288.62
70277.249
67156.119
70561.415
67515.99
65348.218
64906.644
70737.446
67662.785
68523.069
71489.57
66366.427
65440.129
71563.601
70436.356
68502.807
67272.432
64962.985
66288.799
68984.948
65808.819
66682.846
69782.351
69954.791
70408.766
67313.083
66759.711
63517.172
64467.168
64448.194
65106.21
76600.253
75895.186
76124.855
76756.654
75532.568
76346.279
75627.934
74675.109
72457.944
74229.438
72026.753
74541.313
72876.841
70526.88
73987.686
71790.795
75912.788
76128.849
75466.086
76466.441
73844.867
71647.513
72343.322
74405.238
76333.576
77026.511
76466.868
76952.665
74998.026
72946.188
74753.369
72587.45
69379.537
66208.203
66805.876
69890.625
69134.045
65963.089
67735.947
64450.041
63923.345
64570.793
62049.882
63685.213
76242.391
75461.371
76013.29
75711.861
76441.108
76586.091
76862.109
76664.29
76800.809
76214.814
76755.913
76301.411
77208.296
77415.641
77202.407
77371.891
72190.741
73055.733
73357.314
72503.431
73046.206
73876.681
73992.657
73150.02
73940.517
74719.917
74985.202
74216.749
74732.905
75489.262
75591.994
74839.871
72870.652
73700.547
73838.968
73000.248
72180.664
72695.654
73530.104
73027.897
74554.549
75304.968
75442.201
74680.457
73894.687
74390.954
75147.067
74661.854
76027.305
76558.677
76709.794
76164.286
75389.607
75880.115
76416.666
75840.061
77093.228
77226.938
76962.073
77099.504
76148.555
76783.539
76858.723
76141.275
76028.501
75258.77
75784.749
75518.75
76182.948
76296.927
76594.934
76429.884
76392.201
76914.814
76312.739
76827.078
77257.544
77450.515
77338.623
77486.958
73368.336
74191.799
74305.541
73481.444
73896.021
74721.135
74320.273
73483.994
75907.721
75026.584
75768.297
75139.573
75910.291
75560.054
76312.268
75157.694
73256.368
72157.787
72978.757
72455.127
73813.082
74552.468
74812.817
74072.17
74131.532
73268.515
74069.329
73316.245
74891.198
75619.707
74953.504
75691.172
76479.008
77016.142
77209.313
76643.86
77029.347
77572.903
76624.735
77175.064
77673.979
77928.64
77459.335
77678.889
77601.299
78031.28
78257.326
77744.565
67210.792
66242.528
66384.465
67134.879
67928.103
68883.159
68087.024
67421.557
68319.344
67565.142
68418.628
69315.216
70114.517
69260.498
70107.322
63826.45
64809.729
65423
64493.808
64675.754
64963.453
65943.281
65639.432
67323.065
65848.646
66808.986
66403.118
66649.741
67598.607
66960.415
67907.931
65509.555
64537.519
63588.348
66662.348
65537.269
66479.102
67770.542
68688.528
69154.155
68251.429
68855.371
69756.635
68554.376
69470.934
70498.168
70957.207
69640.295
70094.165
70417.757
70682.519
71524.358
71280.468
59897.375
60635.672
60847.08
61585.122
62586.757
62834.573
63539.304
61873.521
60956.623
60742.049
61717.685
61935.63
62975.599
62737.713
63967.37
63704.574
60722.77
61689.255
62623.797
42092.392
42981.368
58819.647
59519.994
59835.197
59586.334
43258.976
42978.772
23904.133
24198.029
24075.909
23765.654
26048.048
25585.526
25241.759
25672.39
103354.49
103910.96
108221.24
107862.26
103175.64
101829.45
107045.8
107809.15
22827.418
23003.479
22716.641
22530.482
43592.026
44068.547
60096.742
60608.875
60549.995
60285.039
43595.943
43314.855
26405.497
26003.455
26324.349
26682.451
24523.976
24668.076
24931.67
24752.348
23958.6
24205.87
24122.357
23846.556
26112.126
25634.558
25320.43
25770.05
104659.63
105469.8
110198.76
109694.62
105643.12
104963.23
109280.49
109918.86
42546.038
42918.486
59081.587
59505.405
59696.578
60116.111
42937.074
43473.555
25404.507
24935.184
25120.728
25554.199
23485.36
23546.003
23717.854
23613.198
24294.275
23846.208
23771.013
24154.48
25709.169
25228.125
25685.897
26101.85
104515.14
103806.62
108549.66
109003.9
103028.79
102863.06
107489.15
107802
60176.884
60577.166
61550.983
61187.962
62238.58
62561.198
63242.8
63519.752
62223.424
60742.104
61717.692
61230.286
63733.507
62751.874
63239.511
64212.845
22216.97
22350.503
22483.149
22328.422
21092.615
21208.732
21266.552
21176.424
21907.219
21476.433
21360.846
21740.176
22506.895
22626.862
23055.235
22871.813
21602.287
21723.934
21623.416
21471.282
22565.701
22248.802
22089.817
22352.39
23274.689
23428.387
23708.868
23488.154
22816.733
22934.11
22741.665
22593.884
62678.343
61196.546
62194.322
61708.189
64214.294
63236.263
63672.796
64627.093
62352.552
61644.339
62646.178
61379.211
64680.007
63693.614
63354.997
64317.613
66558.141
65233.23
66241.582
65602.841
67290.199
68274.284
68524.909
67567.916
65307.03
66278.032
65700.428
66705.128
67749.455
68726.457
67296.794
68253.554
69339.937
68313.546
69261.062
68410.037
71108.452
70230.638
70294.304
71181.203
69163.718
70093.878
68802.684
69736.276
71574.526
70701.456
71053.641
71928.5
65458.564
64268.849
65281.112
64497.279
66334.962
66477.397
67325.292
67442.514
66185.924
64756.994
65770.318
65209.663
67816.375
66827.426
67216.544
68190.147
70412.419
69256.518
70191.843
69486
72022.286
71150.548
71360.2
72239.51
69217.99
70137.795
69701.558
70626.206
72437.478
71573.512
71088.057
71949.901
17298.143
17251.356
17109.025
17176.299
18083.399
17753.086
17611.813
17896.95
18733.208
18845.3
19152.16
18977.923
18182.694
18274.78
18315.183
18193.681
17448.618
17032.237
16921.413
17306.557
17080.082
17002.004
16853.745
16921.274
17865.169
17976.571
18043.92
17899.014
18018.521
18096.517
18518.318
18378.02
19617.286
19196.293
19132.782
19508.41
18940.923
19003.335
19044.425
18968.779
20007.695
20105.239
20136.246
20040.81
20235.938
20336.28
20770.802
20613.919
20965.964
21152.157
21423.44
21230.616
19884.314
19969.814
20246.515
20117.038
19369.366
19363.364
19300.306
19282.463
20442.005
20528.404
20487.941
20357.757
69776.735
68502.072
69445.305
68871.359
70417.818
71285.436
71589.468
70722.28
69687.897
70608.868
69683.782
70604.936
71559.112
72412.592
71572.274
72441.847
65630.058
66651.409
66835.052
65866.512
65912.829
66143.79
67174.274
66886.183
68830.015
67727.384
68720.43
67863.822
67913.675
68874.645
68248.863
69247.532
65953.359
64427.003
65448.382
65009.726
66519.484
67512.182
67915.124
66961.864
66729.916
65688.705
66687.842
65764.393
67740.954
68714.645
67758.773
68725.39
69708.879
70649.719
70741.046
69800.179
70242.858
71184.389
69842.692
70768.457
72491.193
72599.144
71618.703
71711.772
71727.838
72147.043
73017.971
72599.143
61647.957
61999.812
62595.943
62925.349
63922.705
64613.151
64886.711
63631.978
62083.773
62062.803
62996.425
63046.059
64093.702
63993.831
65109.034
64946.66
62123.282
60422.159
61373.075
61218.329
62412.781
63408.18
64051.601
63103.203
62841.409
61769.627
62693.177
61920.8
63712.348
64692.486
63824.114
64788.535
42394.952
43210.869
59334.054
60133.243
60722.745
60809.12
43775.906
43955.269
24641.922
24616.05
24487.037
24496.922
23274.277
23350.326
23963.597
23795.51
25154.523
24646.896
25235.074
25657.759
26381.196
25954.478
25999.151
26411.591
104736.93
103527.72
108809.73
109855.61
105974.68
106201.2
110914.06
110686.29
43815.372
44202.721
60547.037
60894.557
60969.165
60938.459
44007.461
44027.36
26428.378
26021.392
26317.75
26686.553
24555.049
24697.303
24926.829
24764.337
24672.931
24681.505
24578.15
24539.537
26541.054
26095.084
26053.23
26476.583
106243.64
106555
111147.83
110931.72
106278.72
105965.59
110544.47
110790.54
22114.201
22272.734
22872.781
22650.804
21103.674
21238.454
21826.809
21629.678
22339.942
22348.006
22167.918
22152.437
23265.319
23449.193
23443.353
23245.748
22322.893
22284.111
22136.988
22150.363
22591.048
22298.248
22143.437
22380.752
23316.024
23471.363
23717.981
23500.9
23291.984
23450.209
23450.316
23270.054
43177.622
43627.824
60213.508
60773.806
59791.075
59549.325
42272.244
42167.46
25853.003
25472.06
25639.733
26006.606
24089.627
24239.566
24346.324
24202.486
22825.759
23062.542
22978.359
22776.772
24786.111
24323.838
24095.914
24568.955
102844.85
104464.93
110352.65
109027.42
106275.65
105808.48
110952.21
111429.58
42436.251
43123.995
59316.14
59989.176
60188.81
60608.186
43069.504
43548.878
25246.7
24835.527
25356.139
25708.616
23456.589
23568.928
24078.776
23902.598
24319.801
24035.467
23930.204
24180.77
25779.711
25354.219
25642.389
26034.274
105751.77
105301.21
110501.9
110860.23
104985.13
104402.76
109623.1
110111.49
60369.66
61033.707
61966.481
61333.175
62352.415
62950.225
63327.741
63884.489
62631.686
61252.332
62229.496
61688.443
64247.772
63270.255
63612.18
64552.657
22306.3
22486.927
22983.814
22752.823
21280.827
21426.926
21891.372
21705.384
22103.563
21847.83
21676.506
21924.076
22735.866
22906.661
23148.26
22966.183
20699.507
20993.549
20836.863
20621.619
22234.446
22047.663
21865.613
22029.963
22938.29
23113.862
23243.629
23035.863
21840.933
21985.712
21704.748
21622.622
62727.302
61269.643
62224.049
61815.007
64182.333
63236.421
63676.437
64587.194
61476.698
60826.212
61806.42
60549.744
63835.507
62850.691
62464.137
63415.873
20111.989
20284.582
20844.283
20627.937
19178.946
19313.426
19835.476
19657.757
20140.323
20194.679
20036.718
19987.974
21093.003
21276.655
21240.168
21055.119
18215.782
18389.098
18858.5
18655.596
17297.456
17471.399
17886.799
17680.435
17992.333
18061.203
17886.545
17835.794
18958.262
19108.241
19042.765
18882.838
18036.398
17898.142
17723.652
17869.581
18178.709
17915.873
17759.129
17989.351
18846.291
18981.737
19232.337
19048.834
18785.581
18927.333
19049.798
18873.726
21029.366
21225.351
21467.662
21273.631
19974.527
20073.91
20307.132
20176.686
20092.87
19996.149
19884.91
19962.655
20997.882
21135.06
21213.877
21042.03
17122.065
17467.592
17213.078
16987.103
18338.86
18102.28
17903.912
18092.622
18896.116
19069.991
19247.895
19040.944
18085.056
18267.151
17917.21
17799.384
18155.993
17780.739
17594.747
17936.977
17921.528
17577.201
17373.24
17695.19
18306.871
18471.535
18824.283
18625.177
18586.878
18750.786
19065.278
18854.63
20265.09
20447.541
20829.73
20664.218
19314.997
19413.279
19758.531
19639.105
20020.132
19734.684
19607.945
19878.064
20643.985
20791.763
21065.745
20892.255
20860.173
21080.156
21221.234
21037.823
19914.834
20046.422
20182.715
20050.171
18772.076
19118.946
18975.829
18711.079
19898.235
20035.979
19725.072
19642.297
66456.318
65185.866
66179.566
65530.412
67227.907
68204.162
68393.021
67452.604
64405.209
65383.828
64861.555
65873.868
66944.623
67940.893
66430.244
67410.715
70267.154
69187.519
70123.206
69345.224
71980.641
71100.285
71223.176
72101.423
68407.668
69360.458
68944.852
69896.227
71788.564
70889.107
70360.851
71258.384
65797.896
64339.526
65344.984
64850.472
66409.416
66824.794
67404.9
67792.765
66482.63
65278.454
66296.312
65528.574
68355.541
67365.897
67509.83
68476.104
69708.161
68407.633
69365.763
68771.464
71271.063
70366.454
70691.857
71591.562
69452.028
70384.675
69351.856
70296.011
72157.893
71275.616
71361.382
72247.32
37989.929
37662.714
36960.556
37324.822
36393.737
36224.736
35438.897
37143.411
35136.045
34332.048
33830.398
33007.845
32031.16
696.48067
802.9064
697.95837
793.33843
1022.8645
996.74402
1003.724
973.15367
1056.7572
1083.7907
1071.2935
1075.3052
1497.8189
1522.6721
1532.0319
693.04898
691.80211
801.31088
786.08419
690.70796
801.57568
691.08202
790.1982
1059.9855
996.02329
1056.6438
997.56864
1040.0204
1013.9307
1063.2613
1011.9314
1057.1502
1054.5218
1072.848
1099.4543
1078.8962
1089.7722
1108.8803
1112.869
1522.0406
1518.6718
1478.8215
1492.4079
1511.4281
1519.5004
1581.5751
1595.9962
11820.577
12001.185
11952.263
10481.279
10206.378
10489.161
10791.825
11894.451
11590.602
11702.156
12028.372
5391.2605
3676.4533
5243.1086
3755.7213
9061.6604
8872.3421
9114.283
9360.2395
12389.754
12079.165
12181.19
12540.729
10907.646
10580.247
10835.358
11235.88
11106.981
10796.311
11046.795
11348.188
12420.745
12176.499
12221.871
12442.68
9245.3684
9361.7916
9039.5104
9634.5209
3711.4652
5342.8497
5512.3102
3815.6548
3887.5009
4058.4523
5586.1163
5897.6108
9612.2618
9393.9912
9810.4108
9986.1447
15892.584
16048.884
16119.94
15953.541
14933.241
15033.894
15085.418
15002.67
15293.574
14913.773
14846.135
15217.957
15899.144
15975.174
16380.897
16267.529
13943.721
14045.044
14040.156
13990.093
12995.729
13080.177
13009.289
13013.355
13114.973
12763.932
12778.477
13134.948
13796.832
13840.85
14227.414
14162.055
13488.179
13302.625
13240.803
13413.818
13683.443
13323.032
13315.274
13679.688
14366.486
14425.353
14786.171
14700.694
14159.334
14294.12
14449.57
14305.068
16551.172
16679.406
16967.1
16855.423
15495.19
15528.751
15855.054
15771.54
15375.634
15249.333
15139.82
15248.261
16133.845
16234.453
16334.739
16196.061
16378.462
16572.415
16926.119
16713.062
15473.46
15604.411
15891.574
15764.816
15778.725
15847.177
15779.578
15726.98
16850.382
16985.954
16922.181
16781.457
14498.464
14660.847
14841.344
14739.864
13581.742
13677.916
13734.992
13735.025
13400.41
13464.698
13519.859
13481.536
14649.971
14686.186
14633.824
14610.388
13649.256
13437.995
13472.368
13687.913
13575.702
13351.518
13381.105
13631.359
14491.97
14535.286
14779.298
14730.081
14569.178
14635.317
14841.614
14775.559
16714.714
16847.552
17060.019
16946.21
15649.499
15672.276
15898.728
15853.161
15934.202
15743.392
15663.611
15848.372
16712.204
16833.692
17015.885
16859.086
12477.64
12579.321
12590.144
12617.632
11416.626
11107.623
10940.289
11324.047
10596.943
10630.956
10991.498
10975.376
12112.156
12178.568
12334.493
12291.03
9368.9291
9607.4414
9843.4306
9727.228
3956.0882
5683.9975
5589.0693
3899.5514
3705.341
5354.159
3749.2997
5421.3499
9135.0345
9396.7353
9105.9742
9444.4986
12232.159
12063.124
12203.069
12429.081
10863.615
10489.524
10605.48
11063.481
10890.637
10584.48
10967.92
11243.71
12398.434
12160.84
12303.93
12532.948
9235.5642
8843.7386
8932.0069
9390.9014
3614.7264
5305.7808
3557.3975
5182.7629
3675.9317
3834.4832
5608.8555
5342.6034
9047.1169
9372.4333
9408.289
9723.2564
16463.597
16664.236
16994.167
16768.04
15535.861
15649.208
15966.201
15842.751
16132.412
15651.676
15577.807
16016.486
16624.512
16756.361
17192.707
16996.458
14498.146
14622.865
14911.676
14812.17
13494.42
13527.537
13795.564
13801.155
13838.827
13339.828
13381.423
13875.573
14479.017
14528.937
15041.721
14960.074
14064.551
14087.784
13924.857
13881.82
14285.007
13868.844
13834.122
14251.429
14872.295
14979.435
15368.662
15228.893
14761.615
15007.042
14870.967
14619.842
16937.33
17124.19
17370.613
17219.546
15959.94
16035.541
16351.943
16231.273
15581.854
15826.554
15611.469
15391.863
16462.736
16642.492
16327.174
16177.678
12497.351
12308.636
12388.797
12656.762
11110.249
10741.959
10877.462
11309.706
10958.616
10522.661
10886.277
11348.195
12534.571
12070.119
12213.841
12694.973
9174.8472
9160.2351
9492.5824
9630.4542
5446.9226
3749.7804
5407.8647
3766.4074
5558.3936
3708.2534
5306.6548
3841.5592
9312.3361
8956.5972
9358.0967
9765.3695
13007.044
12625.346
12710.079
13139.356
11389.304
11026.802
11360.93
11802.104
11844.407
11526.543
11785.025
12049.282
13139.363
13003.89
12985.875
13075.398
9592.9231
9742.2907
9285.6127
10083.994
3986.7194
3829.3617
5521.099
5790.0936
6369.0766
4148.5869
5959.045
4427.8608
10211.806
9939.1071
10477.968
10665.911
75236.477
74669.378
75853.34
75383.439
74004.215
73193.859
71188.828
72101.066
76288.908
76005.488
75780.156
75439.759
72355.158
73930.157
71844.457
74347.636
71715.188
72978.044
70900.44
72296.573
70725.738
68677.863
69200.438
67010.567
74377.102
73759.495
73896.086
74548.886
70291.246
72258.832
70239.42
72336.405
64410.73
61376.671
63257.565
66193.014
67782.911
64838.07
67798.313
64800.446
59231.243
61182.267
62696.315
62789.786
68732.978
65750.521
66826.72
69729.459
69886.306
66886.582
66192.451
69287.925
63630.112
64754.468
64762.43
63933.393
68733.247
69486.607
70461.353
69697.244
70926.06
71684.757
71769.811
70963.976
71940.547
70272.88
70965.279
71246.165
73325.706
72466.744
73164.83
72590.469
74465.853
75006.821
74931.847
75479.997
75944.032
76184.908
75436.636
75625.897
75417.705
75961.79
75782.667
75251.045
76380.604
76411.626
76628.785
76198.555
71616.068
72609.421
72038.819
73095.595
73435.498
73500.978
72330.9
72337.114
73842.744
74331.805
74547.29
74028.84
75021.826
74704.243
74830.781
74920.909
71363.641
72176.089
72640.006
71822.169
72370.518
73165.879
72968.157
72147.978
74213.918
73004.176
73749.675
73464.11
73972.825
74708.263
74540.918
73793.281
72894.983
73717.193
73957.715
73122.181
72821.475
73299.815
74111.032
73641.934
74548.68
75305.169
75558.194
74792.177
74472.595
74931.189
75677.228
75220.246
71984.215
72812.654
72908.763
72068.397
72447.236
73275.978
73637.902
72806.533
73649.926
74412.897
74531.185
73753.506
74119.515
74890.198
75239.992
74474.512
75145.168
75713.898
75846.781
75270.977
75632.473
76205.501
76530.635
75966.774
76187.169
76428.664
76601.797
76325.435
76697.275
76976.91
77214.757
76986.8
76029.414
76584.13
76849.259
76285.519
75941.583
76396.118
76945.252
76454.536
77044.947
77280.969
77551.118
77312.887
76850.635
77401.472
77596.404
76961.647
76824.155
76945.313
76430.16
77242.88
74971.995
72959.871
73540.21
75445.965
76501.868
75860.501
77236.037
76723.672
75272.035
73249.72
74259.979
72088.115
68167.838
70475.691
67431.335
71125.2
65249.002
66040.805
69451.352
66276.203
70743.554
67680.669
65476.112
63963.821
75958.642
76113.714
75619.127
76329.555
74178.526
74653.562
72166.67
72812.433
76450.529
76728.615
76335.591
76900.155
73191.233
75040.669
75052.387
73102.838
69669.042
66622.911
67599.682
70480.532
70674.597
70841.981
67940.569
67672.33
64423.407
65533.698
65522.437
65904.694
114450.83
61870.887
62796.176
114730.63
83853.337
83967.436
63277.707
83638.744
83590.847
62900.593
114564.47
114181.63
101581.47
99005.295
100581.95
103094.86
96678.036
94744.371
96209.955
98244.983
96196.55
97499.574
99555.613
98235.157
104430.45
101903.34
100552.97
103095.65
136482.29
135033.88
129090.45
130555.81
138262.21
140175.47
134002.89
132294.37
113706.73
60706.676
62539.338
114861.95
84262.49
84446.869
62877.415
84216.304
84383.274
62638.806
115130.06
114852.32
95021.458
96798.113
98783.828
97097.793
92762.766
90764.503
94988.643
97025.247
97922.944
95120.276
99351.907
101978.84
103628.5
101096.34
99479.314
102136.01
140213.82
138335.82
132393.2
134226.57
138539.92
144597.79
140567.18
134616.98
85490.479
85624.588
86298.21
86332.648
87003.223
86766.723
87883.871
87443.115
86177.196
85287.695
85890.905
85507.378
87030.928
86330.898
86608.86
87230.518
87665.16
88736.046
90786.214
89709.571
87737.165
86389.098
88330.205
89753.691
92524.842
90530.67
91945.458
93973.324
95198.166
93112.792
91906.983
93925.938
86476.798
88412.648
90343.697
88491.495
84511.216
82740.974
86502.524
88475.143
88542.589
86582.452
90680.296
92713.288
94569.733
92583.466
90676.712
92719.214
85720.64
85000.768
85659.555
85104.482
86902.987
86140.339
86104.874
86678.351
85217.172
84630.473
85100.003
84644.384
85986.695
85404.302
85570.47
86131.701
86983.692
87953.828
88267.36
87284.675
87836.9
87448.316
88371.606
88844.47
90134.647
88827.268
89842.803
89100.999
89780.163
90869.093
89211.126
90193.586
88064.52
86963.753
87934.986
87119.915
88821.283
89843.479
89793.426
88847.046
87447.225
86443.337
87287.038
86521.405
88038.841
88941.879
88231.407
89163.391
90797.061
91745.018
91968.844
91039.609
93399.544
92662.057
92486.048
93483.693
91113.685
91893.368
92039.554
92916.997
91506.858
90788.239
91715.253
90619.56
93336.217
92437.251
92150.745
92928.636
90038.76
90910.059
89787.904
90643.122
92140.786
91302.726
91578.948
92387.166
114073.51
62091.67
62599.83
114408.79
83268.473
83829.335
62313.434
84024.999
84028.204
61815.909
114422.91
113637.53
102391.52
99885.149
99845.346
102376.49
97601.711
95674.635
95465.595
97486.341
93213.323
94850.381
96864.371
95164.023
101899.62
99263.491
97449.404
100032.77
140327.32
139441.47
133279.84
134408.11
138905.32
137804.64
131574.14
132794.9
113402.01
61381.94
62213.972
113979.33
83115.87
83660.851
62840.461
83265.448
83279.486
63019.643
114036.37
114043.09
100641.19
98055.649
99057.728
101613.99
95692.641
93689.998
94630.595
96688.188
97019.546
97037.099
99029.631
99024.509
103790.09
101322.97
101284.81
103737.31
135140.32
134697.41
128784.07
129235.12
138768.79
138624
132477.89
132729.25
84303.503
84883.366
84870.24
85436.881
85815.043
86053.617
86456.557
85302.15
85023.659
85133.251
85762.13
85559.874
85949.438
86200.252
86609.733
86920.375
85346.759
84245.338
84885.627
84758.711
85349.636
86064.702
86327.956
85716.196
84836.761
84240.261
84724.811
84297.755
85069.889
85670.283
85178.52
85747.019
91477.052
89542.537
90394.864
92374.849
87346.554
85366.978
86109.582
88144.212
88618.718
88559.632
90538.438
90632.386
94808.591
92792.834
92786.459
94769.307
85191.241
86408.975
88335.102
87053.225
86970.99
87267.738
89221.643
89008.326
93446.608
91449.49
91175.917
93192.293
92582.149
90581.579
89124.836
91008.683
88310.646
87757.629
88718.623
87395.901
89608.955
90647.208
90103.845
89106.336
86841.306
87700.664
86655.606
87437.316
88158.457
89034.486
88502.981
89450.972
89159.189
88848.997
89901.23
88221.653
90858.056
89973.789
91948.55
90932.967
88944.587
87798.948
88672.907
87989.335
90510.904
89480.786
89786.371
90779.829
92866.538
92978.855
94008.905
91860.479
94840.657
93640.652
95799.239
94542.217
91724.734
92677.513
91430.319
92368.804
94040.219
93114.403
93431.209
94317.699
91944.776
91621.236
92591.157
90991.14
94304.69
93359.816
92640.728
93445.649
90324.935
91185.131
89853.477
90684.611
92150.262
91328.117
91842.728
92632.831
68252.339
68614.566
70891.399
70517.554
68596.948
69343.228
71687.138
70984.324
76493.523
74190.592
73466.392
75802.174
75596.352
73339.479
72813.7
74975.548
69959.076
69690.204
72183.328
72444.034
67982.83
68205.776
70362.604
70333.077
74871.467
72689.558
72734.687
75041.959
77201.747
74809.212
74959.033
77317.387
83221.956
81355.999
81810.362
83789.135
79173.582
77096.5
77349.917
79483.644
79737.454
79637.72
81860.469
82003.498
86316.307
84181.592
84268.761
86374.765
85122.154
83193.263
82684.876
84658.034
81012.276
78835.996
78144.292
80358.84
77141.553
77891.197
80001.275
79187.876
84229.617
82207.221
81247.257
83105.902
69241.52
69625.416
72041.347
71706.4
69088.286
68749.073
71090.707
71548.745
75820.661
73561.956
74128.339
76494.731
77114.972
74683.946
74153.055
76477.69
68391.843
70251.791
72614.085
70782.777
68967.191
66903.056
68550.392
70870.734
73090.077
71063.504
73365.928
75577.918
77491.773
75168.472
73188.42
75477.262
77785.918
79831.197
81969.269
79974.079
77002.016
75141.349
77917.402
80024.9
80731.52
78973.903
82273.573
84215.643
86230.421
84191.443
82202.873
84233.053
84283.881
82379.379
83436.93
85424.935
80211.087
78100.558
78856.502
81093.734
78833.252
79592.573
81856.777
81073.984
86411.487
84230.479
83328.98
85413.658
94313.636
94050.965
94739.663
93604.364
92817.604
93079.074
93491.841
93757.242
95341.349
96297.102
94909.502
95838.662
94355.756
95041.783
95305.987
94082.003
96978.971
96499.852
97239.313
97709.381
98488.505
99270.467
98863.039
98038.6
96715.965
95703.549
96442.176
95981.728
97236.681
97457.655
98093.77
98202.381
94132.954
94840.097
94183.307
95462.377
96450.599
100141.5
100961.85
99791.087
98890.603
98306.454
98055.617
98852.372
99099.555
101464.63
101796.72
102511.4
100642.2
99891.635
100650.86
99706.237
100588.05
95061.976
94140.248
95790.75
94828.65
95452.503
96418.477
96427.975
97415.817
93966.702
92815.634
93477.642
93298.291
94070.834
95013.704
95480.686
94539.752
96179.033
96640.652
97456.868
95343.515
98190.934
99285.355
98024.05
96909.904
95868.59
94809.036
95571.774
95087.265
96249.372
97279.589
96532.741
97551.409
98129.679
98898.55
97917.144
97117.42
95687.545
96452.157
96150.198
96879.156
99675.417
99728.597
100594.9
98777.466
97617.743
97298.219
98202.835
98361.67
101287.68
101651.92
100480.88
101008.81
101035.31
100483.63
101491.38
100753.42
99035.153
99007.982
99544.947
99411.773
99309.968
98663.229
99616.032
99124.701
99623.097
98065.4
99519.221
98119.896
96324.142
96160.667
98226.918
96896.623
97641.066
96194.926
94453.243
95207.859
103008.14
102144.81
103134.04
102493.44
102299.99
101498.45
102685.69
101614.27
101311.32
101710
101617.64
101300.11
100574
101593.36
100887.32
101390.28
100133.02
100271.86
98240.999
98624.517
96620.33
96055.821
99779.128
98246.936
97747.165
99378.049
96366.531
95843.209
99186.751
99999.147
100099.97
99502.467
100227.62
99911.166
99622.73
100109.83
98852.32
99348.079
98876.387
766.90236
770.92213
1014.0527
1024.2207
768.41494
758.40304
995.32199
1005.7589
1291.0315
1094.3963
1098.9606
1280.6151
1391.123
1182.1397
1166.1574
1343.594
1630.3106
1475.1714
1895.7416
1739.5723
1377.1872
1679.9316
1364.1317
1629.5867
1078.8222
1093.0751
1269.3996
1267.7263
1072.7196
1071.2286
1236.8725
1267.1574
1405.1696
1678.1031
1313.2488
1599.6298
1330.0444
1356.7504
1631.5707
1636.053
2844.3681
3405.9032
3345.4085
2790.8968
2611.6272
3146.9412
3131.6554
2594.7743
2460.5117
2957.4775
2450.7789
2996.9629
2925.2404
2390.6906
2406.1888
2991.108
2925.0968
2425.9984
2933.1325
2410.8129
2322.573
2829.3543
2850.0126
2343.384
2939.8611
2396.8128
2912.7062
2400.0403
3095.4987
2426.0955
3029.9631
2476.0399
1038.7893
1161.4024
1171.6228
1358.4068
1368.3653
1606.0377
1541.0177
1868.0809
1927.0051
3254.4841
2746.1691
3288.9988
2710.9429
2656.0314
3151.6966
3131.8241
2644.1645
8209.025
13222.11
13775.107
8518.6993
8334.9958
13306.79
13230.208
8323.0097
31692.161
19298.28
19209.403
31398.288
19828.158
31384.958
19197.574
32136.668
13791.919
8675.8855
13742.531
8704.039
9431.3719
14587.429
14056.302
9160.6398
33255.585
20615.904
20085.338
32539.778
32420.568
19796.634
19799.092
32066.722
35755.594
36279.278
39756.31
39092.732
40125.661
36879.945
36242.165
39575.562
42709.348
43171.269
45866.291
45588.203
42257.985
43043.468
46088.825
45166.296
41745.554
42151.653
45126.028
44785.239
38889.707
35487.316
35148.5
38535.612
35852.712
35144.427
38551.221
39189.261
42371.297
41810.129
44852.041
45313.204
48261.761
47881.446
50681.736
50970.874
47795.72
48044.584
50747.219
50553.706
55880.7
53433.2
53291.518
55831.101
56065.409
53483.132
53691.149
56203.966
48069.022
49079.243
51819.321
50728.519
50783.32
48497.47
48406.664
50936.837
55305.651
53148.115
53483.567
55879.603
57062.871
54559.778
53377.661
55787.359
58356.765
59804.674
62417.929
60842.255
59918.59
57609.789
58357.915
60884.924
64587.286
62317.656
63429.133
65883.789
67632.654
65067.654
63366.258
65838.547
66148.527
63688.015
63840.009
66447.236
61121.884
58566.833
58548.464
61153.206
58914.133
58921.071
61601.14
61477.27
66959.287
64347.058
64174.028
66671.623
65778.575
63525.103
62899.479
65354.77
60929.096
58400.353
57617.453
60206.532
59174.671
58779.625
61493.071
61881.346
66979.302
64351.382
64697.058
67280.011
55696.291
53226.763
52394.739
54941.954
50541.86
47940.518
46899.606
49684.338
47846.947
47366.598
50298.244
50752.176
55900.297
53203.074
53644.122
56342.608
48291.81
47610.272
50411.432
50943.263
47413.725
47875.115
50704.245
50189.083
56110.498
53552.077
53006.45
55541.563
55725.092
53218.978
53591.502
55981.385
66721.499
64200.565
63423.063
65964.612
61529.795
58870.804
58177.845
60769.474
58530.914
58428.572
60995.338
60974.319
66084.402
63581.764
63439.74
65815.909
8461.7843
13499.513
14304.653
9097.8632
8191.424
8277.1726
13161.415
13202.531
19042.832
31129.613
19059.307
31327.952
20250.947
19327.834
31466.531
32458.221
13020.285
7784.3149
12656.078
8082.7919
8325.9484
8137.3223
13311.54
12934.361
31711.18
19329.201
18829.41
30751.061
18608.002
30702.449
31130.847
18965.917
40912.168
42128.33
45097.602
43941.83
38876.166
35483.866
34416.86
37753.501
37845.214
34418.737
34933.176
38368.626
41691.235
41204.578
44313.84
44809.856
41471.312
41759.173
44846.759
44515.213
35074.682
38508.551
38204.493
34820.205
35146.515
38508.082
39413.643
36115.342
42591.369
41723.572
44700.203
45472.498
32106.582
13743.995
8518.6902
13397.536
8666.3382
9235.0893
14439.102
8944.8904
13844.101
19815.495
32996.711
20451.946
32242.073
31761.783
19352.87
19710.346
31912.492
42461.767
43027.045
45855.253
45406.122
35907.73
36669.618
39962.774
39296.673
35631.753
35578.529
39092.103
39045.079
42279.039
42389.468
45417.711
45245.443
42820.418
42819.857
45827.338
45944.043
39459.689
35959.565
35977.968
39532.669
37761.113
36263.022
39869.487
41307.553
44556.378
43169.969
46220.858
47488.03
65806.818
63578.776
64338.628
66882.096
60996.322
58525.776
58961.262
61552.371
59231.702
59507.769
62172.775
61962.049
67686.111
64989.922
64710.528
67358.526
55899.178
53631.481
53655.334
56215.928
51119.422
48646.089
48309.777
50986.163
48200.402
48391.658
51169.522
50970.041
56629.905
53985.678
53783.139
56425.031
50276.266
49159.964
51822.423
52752.767
49008.642
48803.745
51523.462
51765.385
56739.323
54215.456
54429.819
56947.128
56792.32
54437.27
55165.41
57345.161
67277.408
64778.452
64922.902
67501.15
62161.853
59493.112
59641.009
62248.979
59692.839
59428.969
61938.15
61923.483
66914.021
64469.191
64284.12
66578.551
65021.7
62789.373
64589.106
67079.994
60388.706
58078.748
59240.179
61826.761
372.78592
372.93883
543.49413
539.94134
506.71848
504.53696
1375.0621
1347.229
1034.4232
1045.8492
4180.494
4430.8789
4435.5431
4183.0211
4107.0485
4075.1577
4319.9749
4340.0276
535.94158
540.20667
503.03147
503.57184
1366.1881
1370.3398
1042.2385
1042.6794
4149.0376
4389.5794
4416.7494
4182.5882
4358.1549
4110.0891
4207.9566
4463.7965
791.50841
793.78869
646.87436
644.71858
2935.3023
2941.8216
3389.5537
3361.0857
2956.9555
2915.8629
3336.0594
3395.7984
1996.8468
2392.4875
2360.8573
1981.4129
1977.8425
2381.0433
2377.0254
1986.0278
8727.0764
8817.0924
8929.3885
8848.718
9010.709
8958.9672
8834.0313
8895.0727
9682.2306
9745.7719
9428.2754
9475.9033
9545.4763
9664.5968
9375.2408
9272.4413
9003.294
8896.1027
8929.7474
9034.0498
8754.585
8671.6539
8790.6287
8877.6399
9479.0661
9201.955
9337.8386
9616.3562
9731.4209
9772.3568
9491.6735
9454.3027
10122.708
9678.0144
10249.377
9545.7474
9400.4708
10077.621
10210.807
9516.7852
9936.2702
9508.5218
10077.295
9634.0303
14617.038
13985.328
14184.146
14762.331
14794.603
14263.314
14226.002
14850.023
12822.368
12810.073
14453.753
14436.147
14183.388
12749.752
12605.268
14392.512
12974.278
12951.377
11989.669
12019.45
11827.343
12752.698
12905.154
11937.515
12068.767
11953.822
10899.322
10982.792
12110.99
11031.176
11074.915
12148.835
10930.861
12082.302
11993.451
10992.936
11865.791
12805.117
12925.73
11950.59
12836.433
11894.311
11951.303
12894.218
12015.902
10951.774
11016.757
12083.6
14653.484
14768.432
14217.572
14060.015
14261.028
12770.248
12656.981
14429.479
12732.642
12689.91
14295.312
14325.406
14646.056
14100.461
14103.732
14751.911
17080.957
17395.844
24391.581
23910.144
19889.194
20234.178
17548.235
19179.409
18918.793
17324.009
18668.49
19016.465
24176.273
24523.728
20345.605
20154.736
18904.296
17297.693
17518.36
19152.83
18936.384
18654.535
17077.556
17316.47
23814.772
24232.438
19851.67
20087.336
24563.979
24234.691
20381.744
20130.641
10405.087
10336.327
9646.442
9700.4538
9770.5788
10201.977
10267.532
9826.6056
9714.101
10153.155
10268.949
9807.0314
10289.243
9595.7975
9672.3828
10381.548
14880.195
14998.598
14440.661
14278.072
14473.38
12854.949
12972.276
14649.701
12851.538
14477.202
14453
12853.111
14858.399
14282.052
14235.763
14900.269
14873.09
14973.067
14421.477
14256.424
14449.983
14627.207
12967.602
12848.526
14625.478
14642.046
12992.268
13001.566
14973.908
14456.808
14415.339
15034.924
11106.127
12265.948
12177.007
11166.887
12052.364
13000.943
13123.259
12137.895
12993.877
12038.706
12058.832
13005.004
12157.765
11085.31
11118.755
12185.933
13119.162
12993.076
12052.993
12143.618
11110.672
12175.972
12270.912
11177.404
12283.084
12319.19
11237.775
11198.546
13130.986
12164.273
12190.299
13150.185
17336.413
17642.322
24659.094
24204.168
20490.672
20164.42
17726.961
19347.417
19083.274
17494.835
18922.588
19261.347
24361.232
24711.607
20336.66
20535.617
19040.341
17448.272
17703.875
19335.757
19062.943
18748.064
17172.374
17444.692
23950.847
24384.451
20222.287
19982.495
24775.828
24388.856
20579.988
20297.027
10034.666
10128.778
9686.6598
9602.3871
10167.588
9493.1808
9571.0126
10264.375
10481.418
10337.229
9654.3297
9775.5777
10184.088
10341.078
9896.16
9759.8216
14815.362
14274.737
14290.13
14902.995
14234.108
14057.409
14674.861
14799.003
14451.285
14258.303
12677.941
12807.362
14486.853
12847.993
12877.498
14494.509
14942.378
15057.206
14523.753
14354.164
14550.758
14737.176
13062.621
12936.744
14628.884
14635.303
13002.934
13017.269
14976.332
14437.116
14411.945
15053.067
13146.442
12188.139
12215.71
13169.206
12137.43
13082.961
13216.915
12233.4
11191.005
12361.989
12260.662
11262.732
12307.585
11228.155
11264.161
12341.221
12990.277
12033.104
12080.075
13034.543
11902.11
12828.46
12964.873
11997.588
12129.929
12029.564
10978.267
11048.796
12154.225
11083.02
11142.111
12213.234
19269.836
17653.277
17379.273
18956.67
17579.557
17823.518
19448.238
19175.183
24881.299
24524.365
20432.475
20696.84
24150.579
24577.521
20415.526
20181.444
19223.856
18830.083
17589.873
17240.027
24724.706
24174.3
20113.954
20498.182
17700.355
17467.861
24438.443
24818.47
20589.555
20378.612
19338.505
19063.307
10103.698
10268.172
9811.7118
9674.4394
10242.416
9559.9322
9678.17
10394.539
10258.165
9556.4383
9630.2879
10353.389
10132.469
9683.2371
9774.1355
10246.199
14786.478
14381.818
14172.566
14938.39
15010.789
14475.233
14431.133
15066.302
14647.997
14673.471
13001.842
13005.468
14369.375
12772.138
12927.289
14596.302
13143.761
12165.81
12187.762
13157.298
11986.837
12921.566
13083.939
12100.619
12231.862
12114.28
11050.569
11132.514
12286.752
11191.128
11226.61
12316.489
12936.966
11985.698
12015.309
12963.719
12020.931
12970.526
13090.079
12102.239
11070.017
12232.437
12146.518
11126.989
12108.049
11032.503
11073.143
12147.142
14860.346
14391.041
14244.855
14971.94
14802.884
14209.607
14178.925
14862.349
14414.865
12790.84
12802.287
14404.331
14443.797
12821.166
12931.511
14609.901
20212.854
17343.391
17673.955
24792.317
24292.551
20573.748
17772.682
19404.911
19151.34
17547.132
18939.461
19308.35
24489.362
24821.973
20426.492
20611.372
19055.783
17446.726
17681.306
19326.238
19003.567
17381.802
17113.436
18694.144
20190.076
23940.031
24375.171
19948.106
24818.266
24445.226
20592.207
20321.411
25219.442
24908.962
27525.618
27264.813
31283.411
31575.983
24547.861
24843.144
27153.472
26878.661
31165.277
30816.4
24626.634
25051.886
26934.791
27344.899
31368.063
30881.927
24892.372
25153.167
27456.105
27224.082
31190.298
31494.1
24918.958
25333.565
31254.033
27248.53
27651.298
31741.565
25091.1
25359.039
27687.965
27448.271
31796.123
31484.521
25090.343
25441.045
27468.833
27760.064
31562.113
31870.344
24703.06
25009.592
27333.82
31381.667
27035.644
30977.238
33760.396
33103.951
34172.045
33515.733
34238.455
33658.691
33945.545
33302.037
33890.625
33210.381
33480.324
32747.442
34070.551
33466.379
34286.22
33598.014
37712.645
44194.936
37352.691
43759.706
17943.202
17916.456
16991.405
22165.495
22117.318
16971.208
37602.095
44031.147
37852.949
44390.055
17908.718
17925.222
22131.254
22102.862
16965.477
16978.519
37695.938
44233.062
37776.05
44064.381
17910.663
17925.897
22132.575
22106.837
16966.561
16978.877
17919.581
44205.34
37502.466
37062.784
43325.504
17946.966
16972.831
22123.468
22172.74
16993.222
33404.608
32732.877
33829.69
33131.86
33949.421
33296.765
33661.148
32976.809
33823.163
33144.77
34001.847
33325.392
33665.476
32948.233
33344.931
32653.212
37387.842
43835.034
37029.442
43434.585
17922.001
17950.88
37289.483
43672.107
37537.487
44021.992
17926.972
17912.173
22108.622
16969.232
16980.597
22133.896
22126.295
22177.526
16999.288
16976.947
22132.145
22103.565
16966.178
16979.605
16971.63
22117.856
22165.765
16991.562
37555.627
43716.163
37513.84
43878.186
17909.877
17925.945
37011.947
43277.279
37266.581
43504.65
17943.431
17916.219
25204.014
24910.183
27536.948
27239.613
31598.06
31218.687
25257.246
25572.296
31720.368
27631.791
27906.766
32028.478
25495.515
25221.174
27845.169
27592.305
31958.133
31642.708
24909.994
25396.528
27272.744
27746.46
31304.032
31869.113
25500.562
25237.996
27619.318
27865.262
32016.197
31692.729
25053.627
25490.476
27418.936
27843.385
31485.577
32005.406
25171.083
25514.882
27574.495
27869.304
32037.701
31697.291
24737.994
27107.858
25042.652
27413.715
31526.62
31143.006
34493.591
33805.906
34215.822
33562.731
34064.659
33361.549
33716.847
32994.248
37956.289
33837.635
44357.385
37680.119
33486.494
43947.712
17925.806
17909.698
17943.286
44100.59
37429.206
33327.453
37859.168
33751.429
44166.621
17916.075
16991.15
22165.643
22117.678
16971.134
16965.573
22103.309
22132.003
16978.803
37779.147
44076.997
37962.199
44225.359
17912.257
17926.951
16979.444
22133.901
22108.851
16967.537
16974.609
22126.844
22178.006
16996.159
37585.226
43685.744
37364.97
43587.924
17951.15
17922.26
33962.634
34443.198
34458.677
34148.916
33792.581
33137.394
34289.276
33614.242
34366.196
33709.764
34087.583
33418.152
34201.242
33557.991
34437.199
33742.002
34068.977
33406.138
33704.133
33013.604
17946.915
44092.626
37276.489
37663.385
44165.562
17919.482
37613.16
43795.933
37822.75
44356.495
17925.756
17910.54
22106.689
16966.44
16978.71
22132.407
16993.184
22172.682
22123.349
16972.738
37661.524
44254.663
37359.371
43652.279
17943.075
17915.692
22131.079
22102.685
16965.219
16978.311
16970.912
22117.164
22165.348
16991.058
37930.62
44112.728
37794.971
44233.537
17909.202
17925.077
15635.556
15106.666
15106.299
15673.882
14985.427
15734.373
15701.117
14953.529
15636.212
15507.176
14774.215
14884.419
15498.3
14943.254
15022.186
15561.198
15446.175
14823.868
14832.59
15481.279
14763.659
14665.489
15261.789
15383.009
15249.891
15129.998
14425.78
14316.085
15312.305
15296.933
14474.827
14481.969
15088.637
15170.794
14556.755
14493.981
14240.456
14170.38
14973.542
15050.087
15007.735
15095.125
14276.863
14207.28
15123.583
14529.599
14614.066
15224.515
15276.134
14724.296
14770.315
15306.885
15393.64
15315.397
14656.556
14588.717
15273.488
15433.556
14860.133
14750.815
15360.178
15445.834
14716.551
14630.391
35798.729
37115.371
38163.184
36747.133
26035.245
23901.463
24171.221
26241.058
24182.178
26201.999
26036.399
23980.213
37513.176
38473.119
37288.934
36289.453
36377.122
37391.31
38488.806
37417.957
26171.646
24033.602
24215.295
26295.906
25909.239
26193.741
24066.41
23777.788
36989.442
38032.005
36529.745
35562.878
22283.28
23058.045
22746.585
21939.888
22236.303
23016.742
23232.159
22485.181
21803.591
21533.562
20450.654
20738.443
21580.089
21216.324
20119.775
20493.918
23182.372
22870.085
22071.079
22427.332
21738.51
21352.187
20257.728
20669.174
21556.895
21852.642
20805.444
20477.984
23235.18
22508.683
22242.829
23001.154
24289.76
24772.75
31347.6
30667.329
26491.753
26959.032
24870.654
27181.958
26818.657
24500.833
26644.578
27107.446
30878.091
31413.119
26684.291
27018.395
26971.367
24591.884
24919.64
27270.4
26480.054
24135.144
24628.115
26999.825
30436.778
31167.932
26787.483
26325.324
31566.723
31096.831
27139.695
26791.579
15531.181
15021.486
15123.707
15682.847
15644.914
15726.716
14970.507
14918.618
14818.655
14816.487
15553.74
15551.758
15516.607
14976.58
14937.535
15451.917
15293.378
15310.526
14699.297
14685.488
15143.964
14337.203
14375.823
15177.861
15256.224
14441.643
14480.336
15301.365
15413.175
15457.758
14830.894
14777.595
14619.027
14568.669
15170.538
15244.547
15379.868
14831.039
14854.149
15383.033
15480.526
15424.066
14683.849
14738.887
15277.343
14845.934
14753.746
15428.412
36017.229
37068.325
38125.027
36968.665
25959.18
23867.198
24109.125
26146.429
37352.158
38344.948
37317.269
36282.544
15393.961
31430.225
31846.562
32211.622
33350.298
32553.874
33669.91
40628.675
40361.355
30824.677
31442.208
31666.431
32832.478
32177.657
33344.308
40322.304
39703.075
31620.253
32349.991
33472.609
31030.016
31821.564
32968.813
40455.807
39964.703
31720.237
32450.223
33546.308
31262.002
32081.632
33179.053
40151
40592.415
35510.223
39217.609
35889.96
39658.453
35989.509
39854.723
35682.214
39426.908
35795.59
39577.993
35997.536
39793.225
35778.145
39536.391
35354.336
39004.504
17330.367
17971.304
17333.232
17985.015
17967.438
17330.35
17333.652
17976.725
17976.652
17333.854
17330.866
17967.713
17970.377
17331.521
17335.52
17985.539
459.47239
463.93012
581.63714
458.07789
458.30381
575.27219
577.49118
14612.15
95440.903
94473.971
14621.055
14616.417
95431.102
95779.643
14610.018
14610.785
95786.166
95369.805
14616.655
14623.67
95457.995
95837.204
14613.722
14612.412
94677.05
93983.744
14621.494
14616.169
94866.22
95243.419
14610.044
94474.128
14611.983
14620.993
94077.283
94735.256
14616.073
14609.747
94820.782
15661.776
15665.32
15668.156
15662.904
15660.699
15664.655
15660.631
15664.966
85624.889
59778.361
93826.941
14627.489
14616.627
94451.253
14618.006
94039.374
94455.868
14612.826
94394.128
14617.325
14610.655
94678.094
93911.984
14612.66
14621.491
93136.484
14612.295
93585.154
93097.505
14621.376
14616.284
93851.425
93985.068
14610.011
93840.907
14616.337
14610.147
94103.069
94015.728
14612.489
14621.526
93791.199
119349.77
82776.414
142204.76
141819.8
139921.02
140231.42
140993.84
139502.73
138048.19
139210.33
135802.68
136534.01
137694.26
137138.11
138183.92
138069.39
138003.69
17311.353
18889.773
122262.85
81982.092
82540.356
120647.47
12396.331
12393.406
82524.003
12392.756
12394.655
82970.694
117334.39
118804.95
144254.4
143403.63
142020.74
142714.35
142191.46
140569.62
139466.35
140870
138597.84
136787.29
138175.69
139981.39
139181.32
138802.79
140786.67
141123.7
17311.369
17311.917
18890.197
18889.791
17312.689
17313.48
18891.715
18890.953
12681.094
12491.243
12684.396
12487.974
12879.879
13076.656
13073.28
12876.518
12682.761
12487.32
12680.417
12489.642
12875.824
138944.21
137252.25
136360.77
137868.88
135494.39
133716.3
132916.42
134624.19
132188.99
130763.34
132705.12
134110.32
135611.08
134052.9
135793.26
137330.88
129527.89
130985.99
132906.07
131361.09
132105.5
133391.91
135340.57
133842.58
138316.6
136779.55
135466.72
136853.73
135554.09
134168.35
133045.87
134527.04
136885.48
135064
136220.03
137766.47
133069.12
131074.86
132666.39
134406.89
112755.44
110615.53
113515.15
115646.33
119341.12
116598.97
118680.62
121382.57
128833.99
126821.06
128603.68
130596.75
124441.21
122104.22
124081.71
126397.19
131719.55
129829.68
129038.85
130912.53
127612.43
125355.37
124637.15
126842.43
123572.59
122553.13
124917.67
125947.86
128967.38
126953.68
128196.07
130254.53
122749.81
120090.35
119477.36
122028.21
117102.27
114131.21
113812.33
116582.36
112692.68
112059.34
115012.21
115717.39
120228.03
117706.5
118585.92
121219.1
110700.25
112336.8
115229.01
113307.92
113207.56
113508.14
116543.28
116086.55
122121.78
119423.6
118864.77
121426.94
120413.88
117970.84
116077.82
118566.54
131337.74
129210.08
128139.54
130141.43
126933.04
124658.07
123891.34
126038.6
121080.83
122841.23
125147.94
123324.63
129135.78
127183.66
125563.13
127551.65
98622.266
99120.147
98626.996
98043.445
98610.484
97971.175
98503.989
99018.543
98388.551
99167.323
98691.042
98752.115
98961.471
98373.496
98616.713
98206.946
99663.173
99491.334
99799.74
99207.299
99611.598
98858.6
99024.074
99612.739
99516.655
99274.122
99794.784
99003.054
99868.184
99382.593
99531.063
99012.097
96678.421
97715.503
96177.452
98046.61
94363.238
94966.377
98105.517
96784.834
98492.376
97185.584
95515.36
95124.062
97840.65
96580.311
96522.74
97654.2
95005.326
94969.436
97413.042
97405.527
96214.564
96035.102
94363.754
94668.541
98349.096
96762.477
97529.878
98993.423
99110.97
99317.863
97897.581
97613.293
94894.605
95749.603
95791.047
96115.129
101417.1
101625.12
101753.3
101487.31
102991.09
102454.8
102611.42
103076.5
100709.39
101328.68
100484.31
101500.12
102614.66
101537.92
102265.78
101334.32
100814.85
100408.46
100648.71
100395.24
100385.76
99564.491
100052.24
100711.53
101035.06
100509.06
100955.65
100650.02
100930.67
100329.81
100896.21
100202.73
99277.078
97674.519
98024.299
99562.701
100013.93
98299.024
100056.27
98162.981
95770.24
96159.925
96014.135
96292.957
98143.329
97578.368
98320.632
97356.631
99113.653
99841.211
99681.126
98902.726
98461.914
97380.38
98120.039
97735.16
98923.027
99766.739
99198.331
99959.98
94446.671
95171.342
94948.068
94214.874
94366.727
95071.159
95254.38
94521.241
95812.738
96814.915
96607.78
95588.545
95681.93
96654.1
96960.166
95908.004
95258.323
96032.709
96250.307
95499.713
96939.256
96520.905
97284.07
97732.763
96720.711
97766.586
97932.436
96917.451
98446.616
97958.214
98978.255
99457.7
98543.717
99322.265
99404.08
98690.337
100300.52
99775.56
100513.48
101055.49
100851.85
100883.51
100138.07
100161
101845.24
101273.59
101940.66
102506.86
96997.678
96659.768
97381.696
96263.439
98161.511
98878.529
98482.534
97731.796
95996.644
96708.607
96160.255
96877.788
97642.105
98488.582
97453.357
98236.036
92764.685
93382.036
93229.332
92610.112
92465.519
93021.198
93617.254
93007.354
94530.75
93940.714
94853.445
93718.959
95121.769
93498.235
94342.442
94170.22
94199.669
93712.031
94383.393
93531.57
94987.246
95945.881
95628.501
94749.945
93834.67
93396.241
94034.99
93202.861
94585.219
95491.642
94394.672
95318.344
95498.835
96195.567
95695.889
95070.617
94943.616
95636.282
95780.509
96467.447
97841.765
97239.607
96967.589
96436.602
97178.681
96391.39
97195.546
97913.909
90901.612
91474.656
89968.969
92302.605
93267.909
92482.317
91629.64
89595.004
90447.369
89403.545
90286.483
90984.382
91807.334
91107.715
91899.981
85959.638
86803.355
86317.125
85470.942
85132.215
84899.698
85673.947
85918.707
87916.964
87541.701
88407.785
87036.083
86603.256
87412.592
86348.012
87147.549
89078.661
87081.077
86215.676
88514.468
87836.072
88723.7
89224.598
90045.894
89496.473
88701.084
87893.309
88654.784
88163.266
88917.528
91500.828
90861.859
90692.926
90101.274
89493.237
89246.156
89973.364
90201.581
83107.737
82909.713
83846.49
83614.757
84079.745
85150.058
84726.299
84393.581
82544.573
82659.388
83358.224
83191.551
83592.417
83780.73
84188.047
84400.615
84821.888
85461.06
110672.24
60269.651
61009.417
110769.77
81953.159
81738.187
61161.005
81425.924
81475.865
60998.884
110707.64
110645.05
92430.129
93037.188
95081.93
94445.825
99975.32
97426.86
96755.659
99291.929
133352.72
132253.2
126524.49
127656.53
134478.27
137565.46
131499.75
128731.05
90791.704
88802.508
88209.109
90179.466
111736.95
61578.116
62163.799
112370.66
81915.683
82410.009
61976.339
83099.757
83418.564
61817.098
113131.31
113116.15
101035.96
98565.471
99250.321
101719.15
96297.677
94337.677
94914.929
96937.353
93195.138
94010.06
96107.155
95232.651
101215.9
98546.909
97582.026
100225.17
138845.38
137161.74
131153.71
132951.94
134166.92
133371.23
127455.05
128394.94
110349.52
60521.616
61011.643
110898.81
81167.463
81844.32
61096.619
82140.519
82182.721
61569.979
111574.59
111737.68
98738.83
96193.128
96193.818
98773.612
93844.634
91803.68
91757.381
93799.971
93554.442
92611.946
94638.784
95593.286
99597.358
97001.565
97912.101
100458.07
134601.51
135954.82
129988.98
128765.11
135739.89
133811.15
127857.3
129798.17
82296.694
82930.539
83564.089
82981.813
83478.897
83987.772
84138.312
84571.096
83969.625
83194.229
83831.899
83311.048
84973.509
84299.645
84384.29
84948.929
89559.725
87618.125
87487.305
89518.724
85456.93
83523.225
83230.653
85198.978
85162.26
84162.864
86106.897
87139.682
90363.223
88367.439
89310.805
91294.37
84813.248
85269.406
87271.675
86769.838
86521.65
85867.704
87831.431
88526.284
92105.069
90090.259
90675.542
92676.437
91668.227
89598.545
88948.358
90915.565
84162.22
83032.321
83672.981
83527.368
84812.561
84127.019
84567.747
85132.028
85290.041
84151.529
84754.905
84568.061
85807.321
85172.071
85770.094
86393.293
86619.077
85552.558
86358.801
85804.755
87072.483
87909.888
88167.978
87316.718
87102.174
87914.322
86497.752
87264.415
87949.921
88769.522
88646.362
89512.817
88901.747
87886
88624.042
88137.112
89893.735
89179.444
89461.224
90120.379
88605.813
89335.129
88735.028
89481.505
90730.987
90035.517
89875.562
90541.641
85974.921
84852.813
85630.976
85221.123
86310.71
86618.069
87108.743
87380.693
86396.564
85687.124
86456.366
85606.056
87961.412
87127.581
87060.919
87843.779
89731.051
88685.908
89460.417
88932.193
90816.215
90056.771
90312.196
90994.689
90317.831
91123.285
89531.468
90299.191
91600.916
90880.822
91739.033
92479.018
67352.839
67466.496
69642.074
69595.679
68671.153
68174.22
70464.212
70941.938
75150.025
72917.158
73343.802
75601.646
74244.866
72000.023
71928.982
74100.841
67304.63
66333.214
68597.194
69583.488
66042.184
66669.631
68783.634
68259.313
73182.838
71069.991
70517.23
72703.367
73260.941
71037.437
71954.678
74191.084
76527.504
75578.032
77697.022
78700.557
77394.237
75362.435
74866.676
76892.481
81424.14
79492.25
79063.341
80972.196
81987.484
79927.791
80919.636
82959.932
83716.429
81762.52
82315.197
84268.382
79596.007
77454.115
77887.975
80041.202
76356.842
76527.919
78675.394
78470.87
83023.246
80934.672
80661.274
82632.236
91513.133
90655.782
91514.004
90640.257
92185.158
92991.918
92879.165
92132.015
90429.28
91238.616
90503.462
91332.592
91959.235
92717.365
91827.701
92551.94
86645.682
87475.568
87516.076
86652.403
86864.429
86685.382
87503.474
87702.915
89147.595
88211.513
89081.633
88239.568
88453.845
89345.66
88223.733
89068.822
88185.837
87163.15
88054.361
87300.29
88836.253
89752.975
89800.758
88920.759
87938.872
87161.481
88007.34
87078.678
88745.126
89626.561
88671.84
89554.752
89895.544
90702.577
90707.302
89924.316
89840.209
90609.19
90169.682
90986.756
92104.985
91989.805
91315.877
91266.839
91605.194
91177.292
91870.542
92354.019
84164.326
84418.843
84766.799
85006.77
85345.255
85855.233
85920.142
85174.888
84543.331
84763.991
85278.379
85078.328
85381.493
85547.851
85946.215
86109.564
85530.717
84216.527
85006.538
84801.024
85556.809
86308.176
86540.321
85943.521
85434.029
84718.827
85364.775
84741.945
85752.647
86377.337
85810.501
86359.777
112530.45
60888.306
61782.348
113402.27
82959.099
83611.835
62241.446
83607.644
83567.815
62394.453
113887.74
113677.14
94830.532
95200.599
97185.09
96867.966
93956.955
91998.327
93444.979
95430.052
98975.568
96298.154
97693.174
100280.74
102041.87
99505.264
99200.993
101774.07
139710.66
139188.39
133255.63
133828.22
137560.8
137742.59
131871.63
131722.73
113290.88
62110.007
62526.631
113522.87
83048.298
83311.395
62414.916
83515.278
83711.518
62477.218
113906.7
113895.31
101865.81
99339.701
99715.331
102210.57
97032.001
95053.376
95348.722
97380.261
95200.612
95423.916
97475.968
97212.601
102435.52
99858.819
99521.922
102067.66
138008.92
137211.38
131151.49
132026.56
136611.14
136266
130247.89
130716.11
89869.023
88030.988
89461.11
91270.425
86000.805
84190.623
85525.61
87329.05
86480.926
86944.691
88846.344
88441.942
92987.784
91047.249
90587.288
92562.93
86898.482
86901.811
88868.06
88856.531
86929.405
86496.447
88479.34
88956.564
92788.172
90761.299
91098.747
93099.453
93146.628
91143.411
90991.77
92958.364
114439.2
61885.336
62513.713
114997.22
83953.92
84508.215
61419.617
84703.033
84818.529
61256.53
114827.07
114005.07
101395.14
98866.398
99267.268
101796.47
96595.193
94704.833
94992.509
96937.307
90584.388
92375.944
94339.377
92589.372
99516.424
96754.732
94930.637
97687.677
146075.51
145293.84
139018.91
139947.31
142136.33
141053.15
134788.26
135963.56
113262.81
61005.031
61725.906
113711.3
83178.487
83729.269
61720.779
84010.385
84271.895
62236.134
114116.54
114399.15
99963.908
97436.132
98081.563
100575.46
95137.088
93209.366
93840.253
95808.706
94468.532
93962.177
95922.898
96461.588
100859.24
98274.118
98765.822
101336.04
141061.12
140909.95
134805.52
134994.36
140391.62
139995.3
133853.23
134401.74
84316.992
84853.102
85508.869
85015.872
85545.736
85960.779
86317.399
86635.109
86001.851
85057.989
85672.964
85354.942
86849.852
86126.411
86423.207
87047.449
91069.347
89214.639
89842.327
91685.906
87123.336
85246.176
85807.088
87729.198
86468.279
85917.035
87765.148
88260.924
91798.348
89907.073
90356.335
92218.366
82565.131
84443.397
86277.252
84313.396
86983.1
86619.613
88482.741
88838.117
92525.721
90609.923
90936.191
92815.838
90207.158
88316.921
86446.028
88289.313
86308.849
85033.793
85716.358
85609.868
87077.46
86253.876
86816.739
87521.756
86933.182
85862.421
86688.865
86044.927
88225.156
87342.988
87594.725
88409.91
82223.948
80467.108
81638.531
83369.317
78480.115
76614.487
77534.926
79452.709
77934.505
78550.221
80612.842
80072.903
84808.886
82837.524
82257.319
84290.763
74522.755
72600.22
73241.81
75215.334
70418.955
68302.899
68637.868
70881.805
68660.239
69204.1
71535.129
70978.314
76242.032
73983.355
73330.579
75588.753
69425.667
69126.959
71357.786
71737.036
68965.65
68763.952
71054.367
71282.842
75739.048
73496.621
73687.411
75960.894
76001.126
73773.805
74030.289
76220.374
84327.29
82376.456
82694.856
84662.003
80197.313
78041.304
78248.169
80399.99
78460.124
78295.723
80400.541
80581.597
84688.417
82647.742
82741.664
84745.772
67079.359
69113.237
71134.073
68993.883
70379.96
70083.179
72277.358
72603.669
76718.291
74584.8
74829.922
76942.014
75098.008
73197.107
71220.225
72996.454
69830.853
69018.076
71243.727
72026.405
69078.248
69007.18
71101.443
71260.513
75385.243
73328.45
73479.801
75517.408
75706.904
73544.661
74273.317
76358.725
83234.823
81465.462
81802.734
83608.94
79431.378
77484.669
77698.292
79618.009
78484.116
77834.386
79850.526
80434.041
83868.998
81935.735
82513.866
84348.293
84644.524
82830.084
83072.825
84820.328
80842.412
78841.091
79065.514
80955.217
75089.017
77026.768
78842.789
76796.79
82476.968
80750.161
78806.422
80446.103
89347.454
87974.696
88961.261
88354.124
89850.501
90872.722
91245.588
90214.122
89310.691
90317.313
89150.039
90150.797
91059.007
92108.257
91244.753
92325.049
93143.423
91820.949
92766.737
92178.511
94449.511
93518.305
93880.876
94737.062
93346.242
94365.112
93088.808
94068.099
95745.25
94837.157
95177.135
96110.166
88368.381
87201.79
88191.639
87421.992
89089.366
89178.922
90117.45
90118.929
88745.499
87645.777
88541.375
87804.988
90354.346
89349.517
89554.397
90498.336
91938.65
91073.103
92017.657
91004.334
93673.045
92760.07
92636.404
93465.238
91377.773
92260.144
91230.854
92111.629
93635.336
92786.804
92943.998
93773.993
71652.275
72070.267
72354.171
72328.172
72792.156
72024.985
70864.152
71690.822
69110.661
68293.449
66874.976
70376.587
65762.13
64239.507
62771.247
61161.746
58974.777
783.76671
1030.0692
781.33169
1032.9059
1157.7024
1159.0161
1348.7608
1374.8076
1147.8808
1152.7671
1364.2454
1358.752
1619.1892
1542.7064
1785.7596
1487.5582
1493.0069
1816.6447
1830.0939
3042.6878
3097.2001
2641.5079
2617.1693
2629.1291
3111.8352
3174.7215
2642.5931
3296.5206
2676.2011
3247.7139
2697.9976
781.39546
779.77528
1030.3316
1031.4522
783.67992
1042.0931
783.2612
1043.7086
1175.2307
1174.4987
1360.4633
1386.1433
1134.1698
1131.0168
1338.9285
1341.6087
1525.2016
1620.6198
1980.1358
1837.7233
1471.5536
1442.587
1798.9675
1808.381
1165.9743
1165.6324
1360.7445
1385.5569
1164.5399
1188.7083
1381.7858
1392.9754
1588.2176
1520.6081
1920.126
1869.4964
1516.5976
1575.2963
1873.1542
1895.9291
3290.4895
2845.9182
3321.7289
2808.8105
3125.3601
2677.9016
2641.9555
3136.682
2542.4913
2988.0049
2549.8494
3061.5287
2554.8927
3076.1813
3126.9322
2577.6032
2715.7272
2731.7627
3153.9065
3216.222
3117.501
3195.0991
2696.7636
2719.7146
2745.355
3246.4289
3334.337
2792.2254
2858.1356
3488.5576
3621.4481
2935.6065
41311.468
45233.988
44150.596
35610.853
35157.305
38342.595
38752.869
41764.297
41296.314
44097.899
44625.387
13775.76
8432.5318
13283.186
8745.2709
31624.34
19267.554
19788.161
32038.96
42774.157
42480.53
45399.372
45769.011
39390.614
36140.332
36311.739
39644.821
37277.049
36695.642
39913.928
40335.599
43240.134
42888.697
45703.307
45964.018
19801.45
32448.39
19630.355
32587.584
8707.4047
13639.849
13760.034
8971.7798
9180.4216
9819.2422
14211.328
15134.92
33077.749
20284.366
21209.021
33795.08
64293.995
62064.379
61333.393
63620.697
59541.918
57203.117
56540.648
58863.466
57451.062
56624.255
58970.754
59911.854
63928.801
61506.103
62433.863
64852.471
54804.937
52602.736
51780.159
54119.476
50243.329
47913.67
46885.981
49389.354
47415.18
46797.602
49309.782
49998.86
54124.393
51794.718
52553.911
54945.587
48623.469
48427.781
50911.987
51040.341
48651.305
48231.261
50817.357
51262.409
55722.019
53346.344
53782.443
56172.752
55585.257
53341.897
53425.268
55635.058
65675.291
63324.431
63708.25
66154.153
60823.468
58307.744
58692.06
61195.119
58002.357
58019.294
60398.308
60302.59
65082.375
62788.749
62694.831
64956.773
65961.919
63755.456
63748.378
66131.747
61277.495
58902.628
58786.968
61215.739
58678.417
59097.424
61610.249
61168.947
66688.157
64251.268
63766.268
66182.38
56406.974
54164.397
53912.751
56284.632
51772.695
49398.456
48840.458
51449.497
48218.643
48652.952
51354.961
50934.67
56480.525
54031.674
53626.033
56111.367
48936.298
48617.207
51352.917
51677.567
48422.684
48379.538
51051.556
51133.127
56116.253
53688.17
53766.09
56226.558
56511.49
54065.1
54405.218
56901.832
66234.492
63850.795
63931.435
66430.633
61281.267
58759.906
58809.011
61332.345
59519.278
59161.165
61655.373
62006.878
66674.057
64221.427
64588.672
66990.312
43056.527
43919.928
46745.615
46033.765
40830.439
37506.851
36552.163
39905.022
36032.7
36296.511
39704.944
39317.046
42438.71
42853.744
45836.618
45393.363
20007.407
20673.307
33755.408
32798.682
9414.1112
14592.547
13925.337
9073.0176
8591.1706
13601.522
8745.3171
13866.431
19878.758
32568.094
19706.317
32391.172
42472.261
42534.972
45539.607
45532.494
39333.322
35957.431
35819.486
39264.315
36698.257
36110.293
39547.264
40003.95
43140.726
42763.834
45767.385
46099.243
32177.04
19296.271
19363.973
32065.433
8557.2411
13472.134
8393.2958
13338.956
8562.1671
9107.5599
14525.18
13670.85
19682.77
32381.765
20528.79
33023.044
66657.451
64409.183
64235.038
66596.021
61854.965
59344.392
59230.384
61697.547
59837.186
58852.474
61400.49
62339.067
66559.311
64061.478
64921.42
67369.579
56673.306
54225.596
54277.622
56696.683
51625.962
49036.353
49102.657
51772.683
49228.929
48358.255
51088.064
51991.614
56235.297
53784.588
54726.563
57231.591
50075.416
50723.963
53205.727
52318.101
50261.818
49639.815
52303.794
52935.975
57353.972
54937.459
55527.662
57911.617
57799.641
55678.545
54569.081
56525.612
67637.608
65206.655
65479.447
67853.274
62610.142
59988.651
60415.077
62934.013
58569.909
60129.951
62391.499
60692.242
66815.224
64672.599
62857.426
64820.131
43156.279
43215.676
46198.88
46220.295
39988.741
36560.102
36424.099
39907.724
36634.771
35808.903
39292.555
40060.005
43279.319
42483.861
45494.87
46315.564
19718.333
19936.561
32762.462
32571.7
13752.873
8847.3235
13997.093
8896.0442
14287.259
8589.8248
13538.547
9064.3045
32037.499
19416.246
20239.069
32810.314
44268.028
43757.013
46779.904
47373.24
40488.513
37026.651
37457.304
40995.895
38834.981
38408.761
41907.704
42042.372
44975.971
45079.997
48001.219
47619.034
20391.133
33097.855
20008.958
33478.781
9333.1763
9029.6664
14138.168
14509.175
16382.426
9789.1584
15115.186
10868.068
34390.697
21241.8
22474.389
35130.89
98227.738
98717.089
97562.678
98177.151
98377.44
98762.862
98291.983
98082.17
96731.778
96509.036
97360.371
97005.929
97278.102
97106.068
96720.254
97570.257
100606.55
99681.907
100741.27
100013.67
99862.953
99161.449
100357.32
99380.254
98826.949
99238.448
98827.394
98472.584
98117.88
99197.403
98622.408
98713.137
98006.555
96237.607
96576.11
98063.176
97674.168
96336.141
97172.847
95854.217
94215.399
94739.805
94208.173
94651.684
97445.54
96189.732
96312.383
97403.012
96584.969
95487.505
94782.704
95956.989
94568.694
94786.412
94003.35
93261.452
94131.146
94983.077
94000.812
93234.152
92527.559
93250.389
93282.643
92592.638
95778.998
95770.321
96880.151
94715.82
94882.386
93910.071
94914.627
93912.129
95094.739
95818.223
94382.23
95088.226
95884.746
96728.292
96634.083
97476.749
93424.497
94145.834
94294.369
93581.539
95761.406
94975.33
95870.181
95009.631
97786.534
96615.656
98627.495
97445.415
98289.198
99041.891
99472.693
100124.07
95670.548
96466.649
96349.398
95620.828
97829.24
97317.774
98125.273
97111.753
92185.238
92853.886
92174.164
91510.276
90605.991
91247.853
91426.749
90809.253
93708.538
93456.9
94402.439
92770.511
91837.41
92761.755
92905.288
91987.032
91437.459
92043.992
92161.537
91571.917
93097.931
92191.297
92772.583
93703.848
92589.687
93476.575
93551.57
92692.238
94256.713
93292.51
94157.473
95159.55
90488.147
91066.969
91251.086
90680.055
91287.442
91823.592
91675.712
91103.534
91586.912
92446.087
92571.51
91751.931
92293.508
93100.042
93039.622
92184.815
93031.737
93661.848
93754.951
93130.441
93641.528
94258.459
94301.013
93638.141
94403.788
95247.075
95224.808
94465.162
94946.553
95749.444
95812.785
95017.018
94095.459
94777.299
94811.647
94149.591
95816.617
94762.848
95441.948
96469.341
95549.876
96395.722
96306.113
95532.629
97197.467
96170.537
96937.853
97920.941
97673.118
97182.687
97733.024
97083.273
97852.365
97472.625
97508.253
97828.682
98577.347
98959.869
97682.549
98192.607
98273.293
97837.918
98871.272
98243.901
95703.68
96715.989
95540.754
96806.006
94018.334
94239.983
97225.494
95796.009
97016.689
95784.319
94222.804
94087.581
96660.303
96059.198
96661.481
96017.644
96846.348
96892.073
96529.407
96659.671
97240.501
96544.287
97160.012
96619.739
97152.857
97397.881
97423.29
97131.968
95822.706
94699.501
95057.118
96060.337
96474.619
96521.218
95488.855
95402.876
93206.427
93652.594
93964.965
94073.237
120663.17
82973.647
83017.112
119108.57
12394.924
12393.029
82542.483
12393.677
12396.553
82613.005
116254.38
117558.99
143393.06
142813.04
140930.69
141450.98
141737.59
140135.95
138606.09
139945.7
137445.62
136329.73
137628.59
138760.05
138282.17
138115.66
139525.94
139777.95
17313.766
17313.088
18891.376
18892.017
17312.346
17311.815
18890.259
18890.651
124984.45
83549.425
83562.298
121329.86
12394.962
12392.838
83225.477
12392.672
12394.807
83492.258
119279.37
120871.87
140548.13
138762.11
140283.47
141986.78
145747.64
144055.81
140653.58
142077.37
147720.59
147030.57
143186.49
143727.24
141447.95
141030.41
142990.39
143422.23
17311.64
17311.833
18890.058
18890.059
18889.393
17311.451
17311.922
18890.034
12489.813
12487.364
12680.433
12682.896
12878.313
12875.813
13075.026
13072.528
12682.884
12487.211
12680.283
12489.78
13072.379
12875.664
12878.272
13075.029
131093.16
130314.92
132323.95
132980.31
131768.19
133083.22
135206.7
133660.44
138698.02
136983.79
135521.85
137144.45
135215.47
133707.46
134669.34
136199.56
133621.91
132154.34
134268.93
135593.91
138404.76
136442.43
133998.65
135841.37
142326.26
140420.5
137636.17
139197.65
137442.65
135769.79
137444.29
139086.95
12680.684
12489.901
12683.007
12487.587
13075.167
12878.401
12876.085
13072.817
12684.617
12488.24
12681.351
12491.462
13073.53
12876.772
12880.098
13076.874
13270.703
13464.605
13462.019
13268.185
13272.081
13268.811
13462.701
13466.069
13887.468
13668.147
13890.126
13665.525
13669.618
13891.607
13666.187
13888.105
13462.792
13272.232
13466.219
13268.898
13669.767
13891.755
13888.198
13666.277
13464.616
13268.227
13462.057
13270.709
13665.564
13887.503
13668.158
13890.138
14118.929
14349.084
14346.318
14116.184
14840.599
14586.945
14589.821
14837.711
14116.844
14120.511
14346.999
14350.771
14347.091
14120.657
14350.914
14116.935
14842.457
14591.677
14587.742
14838.518
14118.941
14349.095
14116.219
14346.349
14837.747
14586.977
14589.831
14840.606
118494.09
82422.518
83011.492
119545.66
12395.127
12393.153
83131.546
12393.702
12396.453
83159.208
120050.17
121221.44
141135.03
140686.37
141625.71
142163.42
139721.02
138152.82
139225.35
140594.72
140378.46
140148.59
141648.22
141806.92
142738.51
142371.65
142901.48
143475.99
17313.594
17313.116
18891.411
18891.837
17312.514
17312.106
18890.586
18890.841
119369.15
82241.982
82768.647
119527.2
12396.608
12393.782
82203.943
12393.195
12395.132
82316.171
116051.8
116392.67
141888.51
141395.73
141509.1
142031.06
140474.49
138988.37
139082.83
140472.01
135929.86
135472.32
136905.94
137276.73
137854.11
137536.38
138074.8
138377.93
17312.089
17312.578
18890.91
18890.569
17313.252
17313.871
18892.131
18891.558
12490.111
12487.715
12683.224
12680.813
12876.218
13075.402
13072.955
12878.627
12488.269
12491.364
12684.516
12681.383
12876.807
12879.998
13073.562
13076.774
12681.466
12491.516
12684.668
12488.348
12880.15
13076.926
13073.65
12876.89
12683.234
12487.756
12680.854
12490.116
12876.26
13072.997
12878.637
13075.407
137495.65
135700.34
135807.57
137446.95
133851.08
131769.43
132055.73
133918.23
129563.67
128989.57
131063.67
131467.1
134194.44
132566.83
133148.78
134657.18
133800.9
133471.6
135540.27
135616.34
132496.95
131631.09
133636.7
134330.1
136841.64
135228.39
136157.22
137734.64
138805.29
137147.6
137370.71
138919.65
13461.865
13270.456
13464.35
13268.036
13667.883
13889.853
13887.303
13665.366
13272.174
13466.162
13268.771
13462.658
13666.141
13888.056
13669.709
13891.697
13461.585
13270.265
13464.193
13267.731
13667.678
13665.029
13889.598
13886.902
13464.206
13267.579
13461.384
13270.313
13886.78
13664.866
13667.734
13889.698
14345.695
14118.428
14348.609
14115.592
14589.295
14586.288
14839.988
14837.008
14118.484
14348.62
14115.464
14345.561
14836.881
14586.153
14589.336
14840.088
14346.138
14118.645
14348.788
14116.012
14840.274
14589.512
14586.756
14837.513
14120.598
14350.854
14116.79
14346.939
14838.362
14587.587
14591.617
14842.393
114257.47
113169.39
116319.5
117201.36
112526.05
111714.73
114707.88
115515.02
120271.92
117571.47
118504.63
121213.9
122034.66
119352.73
120251.39
122870
110613.83
110313.04
113136.56
113484.88
111984.3
111690.39
114684.08
114799.67
120291.97
117655.53
117795.12
120475.68
118304.52
115801.33
116235.18
118788.78
129597.84
127488.78
127803.7
129897.39
125194.89
122910.95
123182.78
125535.34
121209.5
120732.75
123069.29
123438.32
127057.49
125095.1
125636.73
127632.48
129548.87
127469.34
128343.73
130420.11
125188.58
122880.36
123861.46
126140.3
125491.02
124729.28
127168.57
127721.47
131428.51
129388.77
129927.47
131849.84
112950.84
111956.11
114846.66
115634.97
112506.09
113012.63
115870.94
115225.46
121389.33
118709.31
117965.39
120561.3
119898.31
117495.91
118311.94
120692.75
113969.48
113196.89
116121.62
116790.47
118554.14
115836.35
114614.12
117430.83
124257.69
121487.43
120411.62
122988.76
121309.67
118878.46
119752.76
122317.21
124889.52
123761.97
126091.82
127148.04
129560.86
127112.67
125616.2
127835.54
134189.03
132065.8
130063.06
132006.63
130181.2
128188.17
129453.02
131522.11
130845.9
128724.3
127515.02
129632.33
126375.92
124038.07
123114.78
125334.8
123026.28
122230.76
124534.78
125143.12
128463.53
126513.87
127255.36
129185.97
15324.103
15092.849
15328.237
15088.818
15088.027
15090.948
15323.269
15326.245
15576.808
15988.049
15572.568
15983.643
15574.771
15982.778
15985.959
15571.719
16542.027
16537.377
17020.959
17025.823
17412.406
17807.799
17802.644
17407.399
17023.451
16536.453
17019.971
16539.803
17406.371
17409.939
17801.59
17805.275
15090.941
15326.238
15087.987
15574.764
15985.952
16538.964
17022.602
17018.912
16535.445
16539.127
16535.32
17018.766
17022.729
17800.377
17409.043
17804.283
17405.247
17409.175
17804.466
17405.098
17800.245
15090.6
15087.778
15325.881
15323.01
15571.455
15982.497
15574.389
15985.554
15328.174
15088.652
15323.929
15092.784
15572.394
15983.462
15987.986
15576.744
15322.454
15090.283
15325.572
15087.244
15574.05
15985.16
15981.834
15570.852
15325.679
15087.118
15322.316
15090.405
15570.72
15981.716
15574.175
15985.327
16539.37
17022.989
17019.661
16536.156
16537.187
17020.762
16541.961
17025.756
17801.25
17409.452
17804.761
17406.046
17412.336
17407.194
17802.427
17807.725
18065.856
18260.985
18062.272
18257.344
18312.521
18186.041
18316.261
18189.682
18068.901
18063.48
18258.603
18264.158
18319.54
18192.801
18313.859
18187.258
17963.741
17420.856
17960.092
17417.362
16650.231
16653.575
17961.323
17418.554
17966.853
17423.873
16656.41
16651.352
18065.337
18061.34
18260.492
18256.382
18311.566
18184.919
18315.785
18188.998
18061.217
18256.241
18260.659
18065.545
18189.332
18311.378
18184.87
18315.921
17963.031
17958.958
17420.106
17416.212
16649.055
16652.744
17958.899
17416.167
17420.493
17963.382
16649.049
16653.21
18192.869
18319.614
18314.087
18187.479
18264.238
18068.976
18063.703
18258.832
18062.627
18257.711
18066.394
873.0206
885.63337
1342.6466
1361.8665
1221.8675
1426.0977
1410.4166
1247.7996
878.41974
865.86212
1212.955
1326.6132
1337.5998
1228.294
1350.3304
1385.3327
2139.4708
2159.5912
2285.7852
2239.9329
2796.8715
2722.2962
5538.2339
5556.0992
2550.7818
2644.0311
5398.2564
5207.2655
4409.8472
4499.543
4139.1824
4197.7397
2502.4763
5402.8571
5139.6158
2505.9327
4045.7794
3963.3703
5081.1866
2490.9409
2482.3171
5100.2601
3891.0151
3931.0604
2222.5655
2174.1074
2112.9616
2120.8993
2519.194
2488.5605
5184.4369
5392.1553
4003.9133
3899.9758
4851.3203
2388.7589
2360.1743
5030.5532
3735.0171
3815.6
2411.0083
2402.5669
5054.1678
5117.8101
2432.0894
2611.6199
5342.9584
5128.5482
3857.7377
3845.4409
3891.8018
4044.2182
6089.3976
6169.7117
5675.2603
5567.5985
5389.7971
5373.6972
5236.917
5252.6766
5263.8594
5338.9382
4952.3864
5093.4446
5254.7096
5179.9333
5729.6764
5351.4008
1402.5634
1413.2571
1255.5138
2262.4644
2264.1372
5458.5256
2747.9521
2732.3461
5551.0542
2689.0531
5759.6151
5213.5179
2589.9678
4180.8362
4249.3713
4390.9461
4346.307
6049.7258
5876.1141
5830.8723
5549.8891
37961.327
50586.578
52622.331
39917.015
38960.959
51494.734
50550.964
38081.246
31238.3
59781.182
65872.467
30917.492
65040.04
59276.68
31764.468
67173.558
30876.434
59279.784
65000.072
59870.924
52967.156
39386.145
52194.947
40239.569
41657.111
54529.279
52969.253
40444.491
32994.546
61699.502
69059.963
32293.236
67704.067
60879.346
31888.631
60525.756
66904.167
31918.782
67665.486
60173.459
66359.364
66428.005
70928.662
70946.788
72669.428
67916.777
67130.261
71841.906
76301.212
77137.015
81787.095
80816.608
75284.721
75156.083
79502.813
79755.31
73916.091
74340.609
78870.042
78424.087
70127.98
65673.177
65215.098
69700.876
65859.463
65121.174
69528.301
70382.213
74618.751
73687.267
78041.376
79025.144
83196.256
82198.397
86621.028
87628.972
82708.147
83097.857
87526.797
87212.414
96075.858
91799.126
91474.053
95753.466
95075.176
90862.913
91828.806
96133.154
83945.102
83618.212
87978.432
88352.227
90757.953
86237.732
85097.737
89603.719
99261.339
95250.472
93960.301
98105.142
96349.522
92157.075
92571.518
96907.951
100912.29
100294.31
103944.69
104586.28
106491.28
103166.89
102092.97
105445.29
112750.46
109972.92
108876.62
111689.18
110163.69
107357.73
108117.18
111015.19
110165.62
107180.78
106538.07
109545.27
103740.23
100092.27
99611.55
103225.7
99860.208
98886.821
102588.39
103584.82
108971.7
106015.13
106962.37
110108.13
108689.66
105465.97
105963.02
108970.59
102198.98
98630.549
99057.207
102705.49
97498.805
97557.556
101198.83
101326.18
107390.47
104358.87
104665.32
107779.08
95226.702
91372.466
91104.923
95332.634
87423.416
82837.552
82188.251
86811.54
81327.846
81008.038
85461.147
85681.392
93798.074
89648.609
89774.797
93905.852
83192.464
82191.54
86748.237
87775.122
82001.015
81848.375
86411.242
86606.267
94710.737
90521.231
90794.332
95135.375
95499.319
91095.956
92128.999
96588.921
108739.57
105610.88
106227.48
109331.93
102162.25
98602.328
99171.509
102843.52
100683.1
99574.497
103383.08
104416.22
109870.66
106963.49
108044.01
111100.71
38253.6
50943.672
53110.039
40187.67
38025.331
37774.832
50629.999
50335.721
30473.895
64568.153
58628.744
64976.788
30664.32
58863.144
32112.153
67342.625
65070.339
30873.118
59133.161
60081.164
50546.209
36484.532
48921.246
38085.727
38905.121
37501.456
51291.178
49737.607
31193.121
59556.067
65575.052
30327.196
63986.099
58536.671
63267.488
30053.388
58263.946
58642.324
30592.53
65018.204
73402.475
74144.243
78595.097
77868.796
69966.74
65488.737
64570.273
69126.292
68479.483
64112.993
64562.379
69009.391
73099.357
72589.753
76883.256
77302.524
73200.926
73306.559
77658.184
77697.093
64752.696
69174.706
68941.413
64534.643
64977.912
69414.818
70439.423
65952.278
74580.812
73605.206
77996.245
78987.765
59997.376
52222.578
38477.579
50813.287
39550.683
41002.088
53711.961
39630.64
51987.625
31812.799
66183.929
32594.625
60769.623
67840.885
60167.453
31153.391
59666.92
65019.266
31580.229
66797.039
59850.037
75375.156
75536.264
79974.113
79807.053
66390.462
66762.182
71327.582
71065.481
65970.325
65689.829
70217.238
70541.986
74752.226
74413.773
78740.691
79129.353
74776.258
74706.004
79206.985
79237.969
70505.118
65943.973
65915.784
70424.777
67325.662
66194.414
70664.042
71842.739
76045.671
74939.366
79309.711
80304.584
110942.24
107806.24
107867.31
110850.19
104542.69
101026.19
100820.08
104600.57
99398.434
99000.849
102881.42
103156.1
109070.57
106226.06
106704.77
109686.6
97559.715
93208.054
92555.975
96919.066
88758.85
84227.193
84001.734
88392.191
83238.976
82833.711
87094.762
87505.273
95174.699
91149.812
91501.16
95637.768
84295.126
83480.274
87891.199
88461.074
83369.398
83287.178
87606.229
87760.616
96012.32
91800.222
92010.516
96304.225
96204.019
92106.226
92282.223
96108.05
110432.61
107268.92
107228.03
110193.39
103682.87
100054.33
100230.37
103896.95
99455.69
100044.74
103570.7
102651.63
109414.32
106846.2
105555.11
108093.01
107633.27
104832.44
106759.8
109626.32
101907.96
98730.142
103668.93
808.48318
804.97605
658.75326
653.69094
3473.4089
3021.9654
3020.4248
3470.2547
2984.3681
2947.4414
3376.548
3406.5854
2004.5279
2416.1882
2385.6729
2034.9899
2035.041
2448.7834
2445.4435
9049.5264
9004.5162
9107.1296
9157.5554
9837.8703
9894.9994
9619.2653
9566.5551
9786.8699
9507.2233
9622.1505
9909.7496
8954.0509
9050.5827
9167.7164
9069.3681
8995.9086
8913.4004
8942.8374
9036.2769
8843.9144
8752.9715
8862.8746
8963.2304
9572.2497
9295.9131
9428.9184
9699.7335
9763.9527
9479.7928
806.3775
807.3387
655.45394
653.96723
3032.2408
3008.5606
3445.7957
3470.754
2979.7595
3036.9893
3490.9091
3413.8625
2050.7554
2043.3208
2438.3393
2454.4671
2417.2646
2016.6841
2043.0752
2456.9708
9081.1794
8916.3959
9016.4701
9170.3758
9742.1125
9909.0564
9614.6932
9469.4264
9784.4006
9905.3632
9598.483
9488.1959
8966.0412
9050.9254
9162.7989
9077.3772
9402.0655
9765.0556
9674.8275
9482.1446
8950.8674
8849.7452
8938.7669
9030.6984
9068.0382
8965.7968
9103.0819
9209.9697
9804.5561
9535.3852
9683.2854
9953.4093
1321.535
1313.724
1615.2876
1618.0819
1330.4204
1629.2489
1605.8081
1318.0478
1056.8823
1061.6994
1050.9112
1068.409
6108.3616
6464.6806
6566.8243
6191.6519
6545.5885
6149.4925
6190.362
6588.9853
7262.1594
7211.866
7663.7883
7606.7377
7140.2813
7502.8774
7612.0172
7245.3592
6599.9582
6209.9257
6231.3059
6624.5568
6168.1018
6436.6778
6095.4592
6523.3187
7198.3927
7108.5602
7451.7062
7557.54
7276.4802
7302.571
7691.3372
7653.7953
3789.0799
3797.7082
4184.7802
4167.545
4742.3416
4724.0812
5417.8395
5441.1348
5318.0961
4673.8407
4725.8164
5381.9518
3735.53
4108.8115
4158.0461
3778.6059
4132.1193
3758.9162
3741.1569
4159.5866
4716.4012
4687.5249
5370.0639
5411.8043
5332.7591
4678.1588
4726.9331
5405.0189
3737.3693
3785.1455
4163.7142
4115.0011
15652.384
15546.21
14946.291
15034.74
15549.137
14839.76
14763.694
15458.167
15422.236
15720.735
14980.843
14721.542
15524.91
14916.062
15209.952
15827.185
14891.366
15557.366
15793.173
15103.707
15497.301
15675.021
14986.026
14827.048
15554.144
15760.095
15165.342
14984.307
15611.491
15040.238
15269.225
15839.963
15522.236
15370.762
14872.523
14999.366
15660.317
15437.371
15134.038
14941.752
15594.831
15480.527
14863.598
14953.816
15555.119
15747.657
15095.727
14941.765
14854.898
15387.523
15318.587
14802.068
15255.932
14737.317
14957.144
15522.541
14866.732
14702.731
15334.911
15551.423
15459.117
15419.162
14782.086
14805.906
15749.992
15035.011
14980.82
15676.892
15161.794
15758.097
15868.428
15240.466
15178.642
15781.646
15889.321
15294.495
15696.905
15811.553
15113.53
15007.832
15404.596
15484.59
14696.07
14758.117
14967.861
15597.62
15489.571
14886.812
14850.971
15455.887
15719.352
15111.889
15357.476
15627.107
14913.571
14669.754
15302.042
15249.275
14725.731
14756.317
15361.914
14705.879
14702.593
15345.447
14859.865
14692.79
15315.793
15532.592
15213.225
14707.838
14922.997
15466.304
15565.92
15004.545
15021.762
15526.766
15561.645
15049.733
15137.147
15666.931
15091.829
15037.55
15669.68
15748.009
15610.612
14947.088
14972.619
15615.613
6615.4129
6243.5032
15825.381
15523.485
14992.468
15051.171
15619.794
14853.51
15601.733
15632.448
14889.131
15374.183
14700.382
15334.522
14758.348
15169.516
15225.317
14408.786
14352
14212.758
15121.96
15019.181
14306.497
14551.41
15152.892
15266.822
14640.985
15266.464
15136.271
14541.42
14658.499
15004.893
15126.399
14310.963
14206.804
15369.591
14818.218
14898.803
15433.246
15516.859
15407.234
14668.941
14771.368
15324.275
14935.104
14800.619
15509.076
15395.307
14658.784
14772.039
15503.754
35545.897
36507.664
37729.312
36648.101
37210.415
38185.729
36901.013
35917.369
23844.271
24083.592
26121.325
25877.154
25932.285
24000.914
23783.825
26068.017
22864.542
23118.802
22377.405
22101.279
21931.984
22739.179
23005.694
22243.884
21548.864
21203.188
20101.189
20475.596
21703.981
20647.017
20344.862
21412.952
20337.014
21675.631
21412.185
20615.917
22102.601
22871.273
23083.287
22346.111
22960.835
22183.097
21881.211
22682.812
21479.416
20394.663
20065.794
21157.089
36175.08
37125.757
38151.707
37174.131
25944.216
24039.623
23860.645
26066.782
23698.61
23958.665
26047.483
25788.502
36725.566
37732.807
36252.13
35297.704
24065.144
24485.932
30930.407
30343.409
26183.079
26585.721
24630.063
26944.81
26555.064
24262.463
26420.508
26802.552
30542.818
31068.788
26690.352
26372.314
26691.422
24348.449
24632.174
26939.345
26719.442
26272.028
23956.488
24379.459
30129.11
30736.233
26047.349
26392.204
31101.83
30705.001
26732.546
26434.177
15516.607
14879.826
14951.173
15576.921
15406.817
14802.199
14865.368
15493.825
15339.748
15264.128
14519.654
14445.567
15354.191
14593.683
14532.11
15415.983
15749.78
15665.291
15005.552
14923.702
15094.498
15646.477
15664.465
15135.842
15151.744
15672.519
15821.422
15257.569
15767.119
15849.907
15092.682
15030.71
14917.904
15809.289
15672.567
15044.763
15083.964
15645.448
15727.185
15183.741
15044.135
15593.46
15726.39
15133.875
15639.014
15695.105
14955.948
14889.78
15404.446
15541.101
14896.358
14791.079
15259.602
15372.229
14539.541
14441.354
15293.578
15233.528
14465.787
14419.012
15374.841
14766.67
14828.153
15446.919
36350.782
37367.809
38378.87
37334.752
25985.857
23934.976
24206.342
26225.314
24093.74
26192.054
25947.92
23827.799
36839.816
37855.778
36309.324
35371.235
36055.349
37077.169
38102.645
37025.272
26021.377
26137.051
24114.615
23926.447
25948.524
26114.649
24120.178
23934.992
37373.023
38320.811
37193.378
36195.826
20458.49
21847.908
21526.033
20797.916
22205.918
22959.525
23248.566
22516.439
23085.043
22305.499
21987.892
22795.057
21601.761
20518.652
20160.779
21257.504
23159.28
22917.184
22135.503
22428.562
20349.896
21429.887
21759.189
20713.454
21829.346
21558.965
20496.865
20800.583
23190.072
22476.457
22232.893
22976.444
24321.068
24722.638
31202.263
30634.747
26847.561
26456.033
24785.725
27064.319
26714.106
24431.274
26643.256
27008.666
30727.05
31242.947
26558.064
26875.387
26810.434
24484.445
24835.714
27144.423
26890.687
26428.88
24092.98
24535.407
30299.501
30923.307
26572.514
26215.952
31345.577
30867.714
26960.073
26607.975
15426.384
14856.161
14925.856
15469.971
15499.171
15080.19
14972.202
15657.17
15669.242
15584.362
14921.938
14843.412
15420.239
15534.691
14786.683
14691.364
15182.435
15282.653
14671.424
14585.846
15050.573
14242.164
14339.44
15153.743
15175.45
15275.114
14455.155
14368.845
15326.341
14704.145
14798.778
15415.7
15592.084
14972.076
14875.66
15488.615
14929.912
14851.261
15464.799
15563.679
15412.976
15316.281
14593.858
14503.976
15340.49
15435.78
14614.318
14534.182
15169.184
15138.641
15683.436
15695.317
15652.706
15136.033
15270.892
15840.14
15850.293
15743.84
15007.545
15105.006
15732.266
14985.221
15056.063
15791.279
37493.007
37111.697
38507.806
36105.876
38222.324
36750.182
35760.8
37104.01
26298.544
26045.461
23901.36
24203.308
26319.534
24248.424
23979.051
26033.041
36500.898
37390.102
38394.439
37489.989
26037.118
26193.052
24208.083
24009.064
25973.151
26198.979
24156.217
23915.362
37169.156
38152.688
36855.687
35877.081
23192.406
22448.11
22148.205
22922.807
22313.858
23050.769
23282.15
22575.295
20600.533
21924.999
21644.241
20897.969
21771.961
20716.122
20365.913
21441.729
23275.869
22532.452
22233.07
22993.287
22067.433
22864.506
23206.618
22447.58
21757.338
21349.394
20260.168
20691.812
21861.162
20810.721
20486.845
21546.808
27014.058
24704.719
24270.113
26556.836
24613.063
24924.351
27198.201
26912.614
31431.201
31007.83
26772.306
27075.958
30487.54
31093.842
26741.554
26404.046
27142.253
26663.189
24801.275
24301.592
31348.169
30653.8
26458.843
26931.932
24896.21
24502.285
30895.715
31459.867
27041.108
26711.009
27228.433
26806.357
15508.274
15615.865
15080.719
14957.392
15195.749
15724.124
15879.554
15300.572
15128.586
15068.198
15819.561
15898.454
15532.658
15702.788
14951.139
14800.741
15288.911
15447.958
14812.885
14690.264
14474.214
14351.174
15159.361
15294.603
15394.679
15454.812
14619.069
14562.542
15561.823
14914.453
14982.674
15616.858
15383.671
15492.812
14858.234
14771.321
15243.486
14418.74
14507.975
15342.378
15186.529
15258.225
14424.837
14366.011
15325.324
14718.38
14787.185
15401.919
15689.442
15626.551
15061.405
15134.084
15652.405
15756.231
14990.065
14895.931
14902.398
14839.735
15594.658
15635.462
15552.977
15003.049
15076.52
15669.852
36105.358
38445.638
37126.693
37374.866
37586.82
38569.508
37458.074
36443.53
26078.21
26213.187
24205.923
24043.415
26117.42
23988.658
24235.378
26284.349
23270.822
22551.582
22323.239
23075.316
22171.797
22962.281
23258.016
22512.186
21831.67
21459.549
20373.426
20773.617
21899.294
20862.684
20577.891
21639.959
23066.14
22271.868
21956.008
22778.731
22256.999
23028.825
23309.461
22555.049
20489.485
21868.093
21561.91
20797.21
21557.013
20458.618
20109.957
21216.392
36469.969
38514.473
37490.009
37430.227
36723.29
37758.102
36174.8
35241.411
26216.055
24082.72
23824.331
25964.601
26106.515
24018.899
24286.318
26349.339
26613.664
24413.068
24853.042
31436.309
30828.856
27031.049
24901.931
27203.091
26863.475
24559.567
26763.886
27165.852
30928.677
31434.608
26726.994
27038.26
26906.116
24553.724
24892.195
27235.219
26916.387
24535.087
24098.434
26459.596
26628.347
30371.542
30984.422
26285.787
31465.161
31003.498
27064.081
26714.225
31344.15
31004.453
31976.289
33104.206
31717.808
32891.385
39826.341
39927.113
30471.472
30943.934
31619.754
32798.027
31249.434
32418.494
39678.041
39192.978
30631.915
31138.847
31337.586
32520.695
31786.563
32934.755
39781.219
39394.595
30864.263
31287.842
31912.369
33047.367
31591.276
32722.316
39533.236
39957.116
30973.025
31468.067
31680.567
39736.705
32839.463
32121.018
33234.546
40104.046
31101.996
31532.213
32178.311
33282.542
31857.068
32963.532
40240.983
39827.499
31216.006
31606.86
31958.463
33096.516
32252.998
33367.426
40112.494
40263.042
30649.093
31153.797
31846.171
33040.731
39976.033
31429.723
32607.536
39383.892
35388.987
39010.173
35661.881
39364.704
35752.552
39559.469
35502.509
39167.431
35545.58
39190.871
35140.637
38630.959
35671.991
39396.102
35772.698
39451.699
17323.012
17962.288
17327.057
17976.854
17325.435
17967.89
17322.371
17958.313
17325.416
17968.17
17322.317
17959.1
17963.56
17322.902
17326.834
17978.37
35125.163
38694.542
35425.056
39023.725
35541.447
39234.906
35268.947
38833.503
35502.169
39118.878
35525.435
39171.559
35318.595
38902.823
35020.103
38522.832
17325.045
17965.956
17330.531
17982.241
17326.426
17969.252
17323.666
17960.596
17322.918
17959.473
17326.114
17968.611
17327.274
17977.09
17323.432
17962.043
31333.908
30857.434
32040.009
33189.764
31634.152
32755.601
40110.588
39577.096
31389.753
31738.718
32116.484
40197.628
33236.208
32409.28
33506.134
40402.386
31731.525
31297.246
32371.007
33497.773
32031.78
33143.572
40416.955
40013.544
30987.574
31576.856
31742.356
32914.546
32271
33410.079
39840.577
40328.037
31722.289
31294.169
32079.512
33191.14
32413.443
33523.249
40548.532
40128.08
31172.42
31696.077
31910.729
33063.937
32392.602
33506.674
40016.429
40494.498
31329.502
31731.702
32109.192
33252.901
32436.585
33564.123
40575.748
40320.994
30759.549
31593.034
32769.021
31241.343
31990.746
33185.336
40201.682
39715.952
36001.255
39702.156
35810.772
39518.568
35705.723
39352.22
35417.543
38988.139
17322.66
39771.5
17959.287
17325.931
39378.943
17968.452
17976.874
17327.051
39249.689
17323.159
39656.241
17961.836
17326.343
17969.204
17323.77
17960.662
17325.426
17966.212
17330.872
17982.514
35539.364
35922.166
35960.27
35695.885
35411.434
39028.151
35768.726
39418.457
35849.911
39571.175
35606.202
39213.908
35745.509
39451.437
35882.063
39564.732
35640.417
39329.788
35303.807
38901.511
17978.318
17326.786
17322.8
17963.459
17325.267
17968.025
17322.184
17958.971
17322.865
17961.514
17326.908
17976.717
17322.214
17958.795
17325.276
17967.736
31665.68
32727.706
32712.399
31638.347
34634.968
33621.291
33615.691
34525.745
33792.676
34053.84
34856.016
34779.363
32046.896
33125.296
32889.497
31817.923
35388.763
35899.932
36458.606
35633.085
36355.002
35802.114
35496.21
35714.508
37008.86
36178.174
37097.531
36002.529
37211.539
36434.374
36377.872
37410.723
35730.349
35799.451
36495.039
36141.336
37325.679
36492.851
36603.564
37204.788
36995.695
35970.906
35766.942
37014.655
35767.815
36366.932
35596.973
35264.762
31980.727
33100.745
32876.871
31773.615
33806.442
34066.077
34817.449
34953.701
31815.957
31791.252
32867.314
32908.719
33840.942
33794.786
34568.895
34837.903
39511.917
37538.792
38861.908
36004.269
41029.31
35953.38
33149.854
31749.305
32005.782
33270.338
31907.41
35729.732
33091.669
35684.884
32960.994
31669.656
36291.888
37542.718
39279.193
37784.235
39401.066
37786.755
39066.145
36217.092
40870.292
36245.032
33388.772
32002.857
32134.904
33413.412
35787.366
32953.829
36150.12
33314.488
31979.666
31553.787
38252.55
39610.612
40785.008
39226.613
31252.371
31532.212
31021.432
30639.443
31178.859
31505.359
31731.741
31504.85
31281.155
30857.06
31425.841
31940.704
30973.28
30248.018
30716.056
31580.18
31585.164
31209.186
30830.259
31332.891
31080.971
30445.732
30929.021
31704.156
30626.719
31160.84
31813.146
31220.787
31552.858
31352.513
30929.497
31227.337
30478.685
31064.826
40858.792
33433.897
40419.386
32932.802
31504.994
32047.532
31114.269
34526.558
32359.033
34206.306
31966.057
30643.194
34158.411
31871.129
34570.3
32352.19
40304.129
32976.165
40746.98
33430.092
31651.97
32092.922
34568.994
32263.397
30884.551
31269.856
34797.367
32559.175
33983.709
31686.457
30276.074
30935.784
34563.421
32282.802
40106.289
32693.048
40808.927
33328.114
31896.798
31293.44
41098.391
33635.146
40798.959
33243.844
32251.936
31854.96
31346.987
32406.407
32415.683
31352.852
33299.36
33304.549
34263.315
34320.466
34438.227
34575.399
33684.588
33434.705
31694.785
32767.143
32537.573
31470.836
35331.698
35403.326
36131.369
35774.185
36240.833
36148.339
36991.61
36849.892
36951.769
37195.705
36318.422
36329.932
35330.913
35169.861
35737.734
36182.992
36376.82
35935.087
35475.79
35656.257
31677.201
32768
32743.35
31660.284
33653.912
33702.01
34637.123
34670.497
31765.907
32977.569
32854.701
31908.429
38321.409
36966.211
38224.304
35776.796
39808.32
35688.315
32951.4
31609.962
31839.443
33075.332
35990.839
37218.25
38344.638
36917.27
32035.68
39499.373
39750.739
38874.477
34764.288
39116.375
34934.664
13297.485
13301.858
38825.932
39421.497
38338.663
34369.586
38857.047
34722.656
13297.52
13302.012
39507.521
38964.352
34778.755
38972.047
38501.81
34414.011
13296.68
13300.326
39606.239
39074.024
34822.775
39202.315
38697.948
34597.096
13301.707
13297.111
14751.069
16718.526
14747.094
16716.319
14747.579
16716.619
14752.628
16719.682
14752.795
16719.878
14747.999
16717.108
14748.039
16717.415
14752.968
16720.696
15655.919
15661.038
15658.826
15654.991
15655.552
15658.996
15663.385
15657.209
15655.766
15660.986
15658.463
15654.739
15655.735
15660.971
15658.453
15654.695
14629.38
93678.104
15667.27
15660.154
15660.367
15657.622
15659.753
15655.644
15656.447
15661.497
15656.063
15661.374
15658.675
15654.972
15658.642
15654.849
15655.856
15661.028
22315.95
16284.536
16565.962
16216.168
16216.57
16566.373
15969.766
15742.296
15742.685
15970.159
15743.54
15743.245
15970.738
15971.05
16566.943
16217.165
16217.434
22317.65
16286.487
16283.718
22316.759
16282.919
16284.565
22316.075
22315.973
16568.043
16218.163
16217.532
16567.315
15971.753
15744.219
15743.583
15971.088
15742.334
15742.837
15970.317
15969.798
16566.544
16216.729
16216.193
16565.978
15537.131
15350.982
15350.398
15536.576
15166.779
14982.858
14982.32
15166.168
14981.161
14981.657
15165.485
15165.026
15535.852
15349.695
15349.223
15535.366
14982.283
14982.03
15165.865
15166.18
14981.533
14981.112
15164.98
15165.354
15535.325
15349.18
15349.558
15535.708
15536.249
15350.083
15350.356
15536.477
15536.223
15350.095
15349.417
15535.574
15165.915
14982.017
14981.386
15165.21
13715.39
13715.914
13857.549
13857.058
14144.406
14000.405
13999.859
14143.808
14800.88
14621.843
14621.298
14800.321
14445.412
14286.018
14285.452
14444.884
14801.697
14622.637
14622.187
14801.232
14446.185
14286.774
14286.304
14445.753
14285.266
14285.712
14445.145
14444.687
14800.588
14621.568
14621.096
14800.058
14145.157
14001.147
14000.694
14144.655
13858.289
13716.653
13716.211
13857.889
13715.261
13715.672
13857.337
13856.916
14144.076
14000.135
13999.749
14143.686
13716.173
13715.993
13857.661
13857.806
13715.581
13715.226
13856.88
13857.242
14143.642
13999.712
14000.035
14143.977
14144.41
14000.464
14000.66
14144.666
14800.005
14621.047
14621.451
14800.471
14444.643
14285.229
14285.614
14445.041
14286.276
14286.059
14445.498
14445.675
14800.954
14621.926
14622.111
14801.151
18057.905
18252.929
18249.113
18054.158
18060.692
18055.306
18250.309
18255.828
18177.806
18308.166
18181.64
18304.243
18311.149
18184.444
18305.505
18178.938
18250.306
18060.681
18255.828
18055.302
18311.153
18184.452
18178.94
18305.505
18252.935
18054.174
18249.132
18057.911
18304.263
18177.83
18308.173
18181.647
17410.591
17958.607
17415.879
17953.109
16648.757
16643.735
17955.808
17413.173
17951.978
17409.494
16642.722
16646.249
17955.8
17413.164
17409.466
17951.952
16642.693
16646.239
17953.096
17958.588
17410.576
17415.865
16648.746
16643.724
17958.663
17415.938
17410.763
17953.29
17956.244
17952.279
17409.783
17413.592
16648.817
16643.903
16646.643
16642.994
18058.603
18253.629
18250.242
18055.288
18063.815
18057.234
18252.238
18258.959
18178.899
18308.862
18182.323
18305.363
18314.253
18187.484
18307.416
18180.808
18250.51
18060.768
18255.905
18055.506
18311.227
18184.522
18179.137
18305.707
18253.393
18054.49
18249.449
18058.368
18304.579
18178.141
18308.629
18182.097
17956.465
17413.8
17410.474
17953.014
17954.917
17412.308
17961.55
17418.679
16646.836
16643.636
16651.382
16645.337
17013.367
16534.68
17018.219
16530.045
17404.585
17799.751
17794.608
17399.59
17016.02
16529.175
17012.435
16532.635
17398.617
17793.616
17402.293
17797.411
15086.313
15321.554
15317.436
15082.301
15081.562
15316.658
15319.741
15084.591
15569.98
15980.998
15976.605
15565.755
15564.956
15975.788
15979.079
15568.115
15084.791
15319.946
15317.362
15082.259
15088.963
15083.791
15318.948
15324.239
15568.318
15979.288
15976.516
15565.671
15572.696
15567.287
15978.174
15983.775
16532.857
17016.249
17013.204
16529.931
16537.547
16531.667
17015.028
17021.153
17797.647
17794.412
17402.527
17399.402
17407.57
17401.281
17796.329
17802.783
17013.163
16534.586
17018.125
16529.845
17404.493
17799.661
17794.403
17399.385
16532.206
17015.583
16528.877
17012.129
17398.308
17793.302
17401.849
17796.958
15084.187
15319.334
15316.367
15081.275
15082.115
15317.25
15321.485
15086.245
15975.491
15567.703
15978.659
15564.667
15980.92
15565.567
15976.415
15569.905
15317.238
15086.213
15321.457
15082.104
15569.879
15980.897
15976.405
15565.557
15319.336
15081.278
15316.371
15084.19
15564.672
15975.499
15567.705
15978.662
16532.203
17015.58
17012.12
16528.87
16529.855
17013.173
16534.608
17018.145
17796.953
17793.28
17401.845
17398.29
17404.51
17399.386
17794.403
17799.675
14343.688
14349.238
14113.591
14589.991
14840.763
14835.022
14584.287
14113.905
14343.948
14111.775
14341.819
14582.36
14833.041
14584.573
14835.235
13265.846
13459.63
13456.929
13263.225
13267.096
13263.813
13457.577
13460.956
13882.117
13663.051
13884.905
13660.31
13664.374
13886.226
13660.934
13882.718
13884.913
13459.921
13266.127
13883.149
13663.352
13885.217
14113.583
14343.613
14340.701
14110.701
14111.321
14341.341
14114.991
14345.114
14834.874
14831.83
14584.225
14581.197
14585.745
14581.858
14832.497
14836.383
12485.746
12483.266
12678.741
12676.238
12871.518
13070.67
13068.128
12874.022
12483.79
12486.898
12679.923
12676.776
12872.072
12875.277
13068.699
13071.924
12874.279
13070.94
118526.73
81126.063
80780.495
116103.05
12390.847
12388.795
80337.298
12389.316
12392.081
80456.016
114081.47
115084.9
133891.09
133277.8
134546.71
135266.77
135337.71
135103.93
136107.78
136462.52
17307.237
17306.746
18884.335
18884.77
17306.18
17305.856
18883.658
18883.809
132147.33
130547.61
130906.58
132569.93
114822.72
80870.554
81414.222
115690.99
12390.323
12388.373
82137.88
12388.965
12391.787
82506.074
118122.23
119789.64
136601.25
136300.12
136972.84
137360.83
135575.67
134218.74
135029.45
136219.55
139355.25
138452.89
139753.94
140695.27
140494.14
140310.33
141669.44
142113.05
17306.776
17306.196
18883.731
18884.264
17305.537
17305.062
18882.773
18883.099
115182.22
80224.289
80993.586
116976.01
12391.969
12389.062
81209.188
12388.423
12390.345
81140.173
117126.79
115966.95
137035.19
136716.98
138744.88
139057.49
136031.56
134741.31
136777.7
138007.38
135741.43
137039.72
138388.4
136971.65
139206.74
138989.33
137658.71
137867.65
17305.101
17305.604
18883.175
18882.814
17306.345
17307.063
18884.584
18883.898
12486.789
12483.536
12676.519
12679.815
12875.169
12871.813
13071.817
13068.437
12678.213
12482.891
12675.856
12485.234
13067.73
12871.129
12873.481
13070.115
133541.92
131926.79
133970.09
135444.68
130395.58
128611.78
130691.54
132416.94
129974.2
131005.25
132900.74
131696.8
135850.82
134328.26
133204.39
134608.33
132978.26
132620.72
134501.31
134783.87
129284.33
128889.86
130625.73
130948.07
133184.26
131835.11
132477.35
133868.7
137347.86
135882.37
136476.99
138001.98
12675.802
12485.213
12678.193
12482.839
13070.094
12873.461
12871.073
13067.674
12679.623
12483.437
12676.417
12486.604
13068.326
12871.707
12874.972
13071.614
13456.459
13265.256
13459.025
13262.764
13662.431
13884.267
13881.624
13659.83
13266.781
13460.635
13263.435
13457.191
13660.541
13882.315
13664.047
13885.892
14341.055
14114.884
14345.006
14111.041
14836.273
14585.636
14581.566
14832.198
14112.947
14342.958
14110.261
14340.25
14831.351
14580.733
14583.548
14834.172
13457.309
13266.989
13460.85
13263.55
13664.268
13660.663
13886.119
13882.443
13459.046
13262.822
13456.52
13265.278
13881.689
13659.892
13662.452
13884.289
14340.181
14112.926
14342.936
14110.195
14834.148
14583.525
14580.661
14831.275
14114.648
14344.761
14110.908
14340.917
14832.047
14581.422
14585.378
14836.004
114507.59
114065.43
116976.4
117173.33
111757.47
111636.21
114406.33
114539.82
119292.95
116951.84
117193.89
119598.38
122249.41
119811.02
119976.02
122397.11
112002.38
112400.9
115265.33
114846.8
111930.05
113318.01
114645.14
118535.31
116002.64
117457.21
120019.86
120571.33
118024.45
117566.54
120039.15
122310.7
122998.93
125272.37
124380.48
122943.09
120857.17
122560.25
124769.88
126807.87
124970.58
126927.33
128826.05
129150.27
127297.34
126389.65
128227.02
127147.78
125339.19
125692.5
127547.73
123444.84
121520.31
121873.6
123852.62
124862.6
124729.63
126947.25
127006.78
130809.15
128949.8
129158.06
131071.38
14340.839
14114.619
14344.731
14110.833
14585.347
14835.972
14831.963
14581.341
14112.799
14342.805
14110.091
14340.074
14580.55
14831.159
14583.388
14834.006
13265.141
13458.908
13456.365
13262.672
13266.83
13263.38
13457.135
13460.686
13881.525
13662.311
13884.144
13659.733
13664.056
13885.9
13660.484
13882.256
13457.12
13266.751
13460.606
13263.364
13664.018
13885.863
13882.242
13660.469
13458.91
13262.669
13456.364
13265.144
13659.732
13881.525
13662.313
13884.146
14112.798
14342.804
14340.074
14110.092
14110.847
14340.872
14114.656
14344.787
14834.003
14831.158
14583.387
14580.549
14585.323
14581.295
14831.976
14836.006
12485.103
12482.751
12678.083
12675.714
12870.984
13069.982
13067.585
12873.35
12483.384
12486.647
12679.668
12676.364
12871.653
12874.981
13068.273
13071.624
12676.345
12486.57
12679.592
12483.365
12874.942
13071.585
13068.256
12871.636
12678.046
12482.746
12675.673
12485.105
12870.943
13067.582
12873.312
13069.984
120150.75
82081.265
82736.764
120643.15
12391.754
12388.893
82604.532
12388.28
12390.216
82577.673
118856.75
118664.03
138105.24
138220.41
139706.68
139485.43
140915.08
139381.93
139703.57
141151.86
142363.28
141889.56
142307.82
142903.76
140872.72
140447.69
140374.15
140766.41
17306.075
17306.71
18884.195
18883.601
17304.895
17305.376
18882.926
18882.591
117334.57
82056.551
82355.534
117717.13
12390.214
12388.285
82489.611
12388.914
12391.797
82721.505
118017.28
118799.54
139516.48
139111.51
139400.42
139845.62
138255.6
136780.88
137287.58
138570.48
138966.01
138422.86
139748.92
140273.29
140526.34
140296.05
141071.59
141357.1
17306.805
17306.119
18883.647
18884.294
17305.397
17304.886
18882.583
18882.947
137827.34
136092.14
136336.71
138019.36
134267.91
132341.62
132508.64
134428.5
131558.07
131657.78
133671.85
133456.74
136916.92
135219.19
135173.76
136753.66
132611.81
132201.04
134218.91
134468.04
130931.04
130656.69
132599.72
132739.24
135576.66
134026.43
134449.98
135975.58
137246.1
135644.71
136160.41
137694.57
121293.07
83166.726
83797.42
122353.62
12390.694
12389.028
84055.778
12390.171
12393.851
84210.192
125196.58
126178.49
144353.48
143815.63
144783.42
145387.36
142783.41
141306.99
142371.99
143703.17
145153.47
145191.92
146819.72
146732.23
148551.67
147926.27
148240.75
149160.7
17309.98
17308.073
18885.797
18887.78
17306.58
17305.632
18883.401
18884.249
120558.93
82340.396
82890.296
121042.27
12391.862
12389.071
83098.424
12388.524
12390.543
83401.8
121331.09
121455.85
143240.49
142662.92
142969.44
143600.59
141672.76
140142.53
140400.61
141840.18
141500.51
141254.99
142815.63
142866.81
144117.34
143636.15
143881.79
144349.61
17305.408
17305.753
18883.339
18883.154
17306.351
17306.873
18884.371
18883.901
12486.715
12483.543
12676.525
12679.736
12875.05
12871.816
13071.692
13068.438
12678.417
12482.992
12675.958
12485.435
13067.833
12871.231
12873.689
13070.327
138606.47
136804.56
137057.05
138728.06
134966.98
132969.94
133278.98
135146.14
134774.67
134132.76
136210.62
136668.47
139761.81
137991.25
138475.8
140057.74
137402.09
137797.64
139748.07
139432.85
135906.7
134899.2
136781.29
137588.33
139974.63
138413.01
139361.01
140901.54
143502.02
141721.59
141524.14
143331.05
12676.48
12485.588
12678.575
12483.503
13070.492
12873.851
12871.767
13068.386
12681.753
12484.657
12677.664
12488.691
13069.636
12872.984
12877.15
13073.846
130240.9
128193.75
128177.85
130291.68
125889.98
123623.9
123447.55
125785.94
123112.72
123045.7
125401.67
125357.38
129690.01
127613.84
127598.43
129618.92
121099.57
118631.64
118256.79
120801.85
115903.37
113217.1
112755.51
115443.5
112810.06
112584.38
115378.65
115562.74
120600.02
118122.07
118319.36
120779.76
114107.45
113148.28
116122.81
116899.58
112248.4
112072.42
114894.33
115051.6
120025.33
117577.76
117810.19
120305.9
121444.04
118942.19
119712.48
122153.6
128671.18
126662.36
126955.19
128979.75
124554.11
122448.67
122758.66
124902.48
124556.11
123930.75
126263.19
126670.95
130299.57
128314.08
128786.25
130703.15
116157.6
116928.37
119834.61
119081.08
116136.75
115255.74
118279.57
119079.71
124027.43
121312.26
122189.9
124920.18
125809.29
123030.33
122163.99
124985.81
114766.2
113900.29
116814.78
117733.9
113259.04
113519.56
116405.01
116040.91
121843.69
119322.93
118997.2
121678.09
122505.82
119826.02
120769.23
123476.92
130828.11
128840.01
129036.65
131137.88
126607.1
124422.05
124378.64
126753.21
126153.41
125235.95
127668.66
128462.18
131999.31
129964.3
130732.32
132736.72
132880.09
131047.19
132014.64
133960.78
128882.76
126670.52
127585.56
129876.22
127867.02
128677.54
131136.35
130402.21
135584.23
133554.96
132914.65
135117.1
13457.211
13265.663
13459.44
13263.496
13662.855
13884.699
13882.415
13660.601
13269.071
13462.985
13264.779
13458.573
13661.96
13883.772
13666.456
13888.362
14341.004
14113.365
14343.381
14111.004
14834.6
14583.975
14581.498
14832.126
14117.177
14347.344
14112.401
14342.443
14833.628
14582.978
14588.014
14838.687
13457.304
13266.9
13460.756
13263.548
13664.126
13660.654
13885.97
13882.429
13459.265
13262.924
13456.622
13265.494
13881.788
13659.993
13662.675
13884.515
14341.028
14114.726
14344.838
14111.022
14836.075
14585.452
14581.531
14832.155
14113.176
14343.188
14110.359
14340.345
14831.436
14580.824
14583.778
14834.401
98253.9
99053.248
99857.124
100459.19
96278.337
97344.139
100440.49
100545.79
100942.61
100859.72
100480.67
99218.939
99423.847
100151.7
97912.41
97967.96
96232.667
96116.16
94058.495
892.59994
1238.7446
895.76163
1385.8571
1400.2267
1247.2684
894.70185
1425.1901
1394.5922
1252.1474
2222.1773
2234.6723
2245.1333
2289.2564
5588.7323
2841.7245
2773.1477
5924.5922
2606.4234
2767.4731
6514.2847
5259.3841
4362.0408
4257.8578
2651.5386
2590.1835
5308.6014
5359.9985
2671.2282
2764.6754
5750.02
5499.8511
4411.4804
4359.9774
4276.7806
4287.0949
5775.9437
5710.5096
5804.0352
6003.1
6293.3634
6113.4409
890.90363
891.84651
1406.6076
1410.4511
1248.0701
1369.6743
1399.2294
1242.6482
902.46693
1414.0914
1426.822
1267.9609
902.49071
1476.7349
1447.5043
1278.4065
2237.5545
2260.7713
2185.5426
2230.4107
5768.1689
2679.1349
2551.184
5169.2061
5341.3804
2729.4307
2707.8099
5605.2158
4562.4057
4512.8603
4230.6488
4340.3217
5406.8074
2567.6015
2573.2205
5183.2311
5409.7252
2517.1636
2556.3768
5256.1561
4158.1195
4115.7749
4167.7257
4105.8052
2270.8215
2263.2548
2334.1666
2377.8661
5415.5239
2640.8119
2669.3459
5501.5055
2539.2266
2589.6688
5884.1293
5122.9786
4324.4129
4360.8696
4259.4783
4300.4851
2647.9222
2604.7517
5387.7489
5285.1331
2699.8557
2877.8473
5632.8591
5739.1236
4356.4204
4334.5501
4659.5038
4493.341
6214.5977
6154.9335
5639.4763
5773.0478
5534.5836
5629.3812
5552.2879
5607.0527
5709.0259
5986.058
5718.3548
5755.3544
5950.3022
6017.6167
6595.6049
7138.4052
73898.257
79450.521
78384.865
65982.513
65675.483
70077.476
70440.379
74713.569
74407.998
78828.035
79049.464
52774.778
37830.673
50638.827
39815.399
31199.393
59638.72
65103.968
31825.878
67360.592
60054.566
74830.694
74500.979
78923.991
79226.879
70238.048
65844.506
66093.39
70539.623
67564.181
66681.935
71161.542
72127.22
76499.896
75554.865
80034.976
80986.588
31893.864
66447.699
31717.942
60163.874
66552.964
60258.937
39285.744
52150.744
51925.39
39237.595
39840.293
41943.551
52951.146
55418.353
32417.98
60999.293
67631.654
33586.988
69937.235
61650.092
106081.33
109057.54
99328.019
102937.84
99273.646
99447.092
103159.45
102808.95
109318.21
106457.19
106194.84
109102.49
91519.367
91388.906
95595.878
87522.418
83401.863
82715.53
87157.471
83206.611
83111.33
87507.817
87512.934
95680.193
91724.021
91607.088
95657.103
85288.245
84372.818
88871.684
89793.124
83436.502
83082.965
87420.689
87818.932
95556.326
91586.593
92012.711
96069.26
97348.114
93264.484
94056.757
98231.28
108830.97
105862.51
106036.91
108889.49
102535.38
99279.371
99736.424
102947.19
102067.07
101310.35
104756.89
105472.45
110966.75
108181.5
108880.46
111710.31
110332.54
107366.06
107084.25
109901.32
104250.65
100803.63
100488.34
104011.79
99895.677
99890.914
103480.31
103683.59
109653.46
106701.86
107050.8
110038.37
97451.574
93607.27
92808.067
96887.716
89645.422
85148.52
84107.833
88603.725
83722.904
83579.894
87993.088
88110.229
96203.307
92116.771
92201.072
96304.762
83850.321
83321.601
87862.239
88339.339
83166.278
82937.812
87417.781
87711.153
95689.05
91584.668
91933.609
96117.381
96363.232
92109.516
92553.155
96851.513
109241.38
106212.47
106437.71
109373.66
102903.18
99447.252
99867.127
103327.79
100696.7
100190.73
103888.49
104510.06
110078.67
107267.78
108013.47
111115.98
75320.857
76401.475
80908.699
79791.557
72067.64
67592.19
66489.98
70978.925
66311.173
66272.757
70688.937
70852.385
75170.95
75006.708
79368.487
79535.251
32201.395
66860.988
68604.579
33126.293
61747.364
60544.894
40956.708
54068.623
52353.438
39768.476
38700.114
51536.987
40007.36
53030.421
31979.044
67662.127
31781.45
60439.18
66291.119
60321.52
74360.361
74227.771
78671.686
78821.99
69962.434
65573.844
65672.764
70063.73
66541.36
65917.567
70300.23
70975.068
75246.066
74581.568
79014.689
79625.941
31341.081
59787.115
65592.073
31248.489
65335.027
59708.006
38337.268
51077.336
38667.217
51356.768
38510.107
40953.632
54259.752
51455.826
65975.149
31616.191
60107.352
32594.581
68871.727
60735.202
110528.88
107388.18
107387.27
110328.26
104056.95
100430.96
100560.2
104173.67
101142.91
100822.27
104502.73
105058.38
110796.55
107831.93
108635.27
111702.49
96918.109
92906.247
92665.416
96863.398
88779.404
84153.943
83835.617
88345.219
84238.621
83837.29
88347.577
88681.431
96942.983
92659.301
92873.249
97188.172
86944.743
86276.435
91069.216
91493.681
85367.047
84636.188
89231.767
90012.257
97791.419
93513.259
94311.488
98662.188
99703.845
95471.188
95815.077
99986.284
112127.11
108955.86
109696.59
112878.55
105362.66
101812.68
102695.57
106269.42
103901.94
103706.01
107305.56
107051.91
113640.97
110814.85
110389.7
113164.94
75113.478
75326.198
79860.1
79561.074
71003.124
66543.234
66245.283
70746.54
66770.986
66138.438
70640.609
71258.555
75649.023
75100.738
79566.623
80062.009
31725.281
66167.088
67164.461
32033.178
60605.844
60155.576
51757.34
39865.444
52765.938
39143.376
53856.17
38433.835
51314.954
40631.589
31276.322
60007.25
65819.859
32260.876
68632.023
60683.015
76465.975
75745.998
80310.552
80971.178
71312.583
66704.797
67361.456
71965.252
69199.224
68275.13
72846.219
73863.121
78231.101
77324.842
81861.659
82687.413
32560.977
68447.331
32130.698
60783.697
67789.595
61355.392
40514.829
40142.208
53230.001
53814.682
58037.285
41677.638
55048.421
44256.005
33613.847
62330.374
70083.543
35118.448
72896.609
62978.967
18059.22
18254.288
18055.14
18250.124
18305.281
18309.559
18183.049
18178.854
18056.059
18061.256
18251.082
18256.407
18179.736
18311.738
18185.036
18306.3
18067.345
18059.77
18262.656
18254.915
18310.216
18183.702
18318.099
18191.436
18057.035
18252.097
18254.9
18059.803
18183.7
18307.31
18180.923
18310.192
17965.58
17422.728
17415.316
17957.886
17955.098
17412.586
17957.879
17415.223
16655.377
16648.33
16648.244
16645.734
17957.218
17414.565
17410.497
17953.001
17953.892
17411.356
17416.442
17959.179
16647.6
16643.69
16644.476
16649.303
15091.148
15326.536
15320.52
15085.275
15083.236
15318.407
15320.667
15085.468
15979.977
15575.122
15986.359
15568.964
15980.117
15566.791
15977.726
15569.086
16533.294
17016.73
16529.703
17012.997
17399.212
17794.243
17403.05
17798.216
16530.499
17013.85
17018.643
16535.082
17800.219
17400.099
17795.145
17405.032
16540.319
16533.614
17024.116
17017.124
17403.515
17798.71
17410.713
17806.117
16531.24
17014.623
17017.222
16533.757
17798.77
17400.922
17796.044
17403.571
15085.093
15320.275
15317.097
15081.979
15082.662
15317.816
15321.891
15086.634
15976.28
15568.676
15979.683
15565.419
15566.149
15977.025
15981.367
15570.328
15084.339
15319.492
15316.497
15081.4
15086.247
15082.192
15317.331
15321.492
15567.862
15978.826
15975.635
15564.803
15569.916
15565.653
15976.507
15980.936
15086.521
15321.777
15317.495
15082.349
15081.478
15316.58
15319.518
15084.364
15570.212
15981.247
15976.686
15565.824
15564.884
15975.721
15978.849
15567.884
16534.956
17018.513
17013.477
16530.144
16529.118
17012.38
17015.799
16532.415
17404.897
17800.081
17794.737
17399.706
17398.564
17793.569
17797.193
17402.075
16532.386
17015.771
17012.279
16529.022
16534.629
16529.954
17013.279
17018.17
17402.044
17797.161
17793.461
17398.463
17404.539
17399.505
17794.527
17799.708
18249.296
18058.12
18253.148
18054.338
18308.387
18181.859
18177.99
18304.427
18060.73
18255.877
18055.429
18250.436
18305.634
18179.068
18311.202
18184.499
17409.642
17956.015
17413.364
17952.134
16646.436
16642.86
17958.653
17415.922
17953.233
17410.71
16643.859
16648.811
18250.659
18061.115
18256.264
18055.647
18311.594
18305.87
18184.892
18179.306
18253.182
18054.451
18249.414
18058.154
18178.121
18304.557
18308.422
18181.895
17959.044
17416.313
17410.951
17953.478
17956.051
17952.273
17409.784
17413.401
16649.172
16644.072
16646.473
16642.991
22316.501
16284.935
16283.29
22316.594
16284.084
16286.784
22317.241
22317.996
16566.418
16216.625
16217.153
16566.964
15970.221
15742.745
15743.248
15970.733
15744.533
15743.972
15971.48
15972.058
16567.708
16217.918
16218.457
16568.327
22314.779
16284.764
16283.032
22315.578
16282.845
16284.786
22315.853
22316.255
15742.637
15742.888
15970.345
15970.098
15970.174
15742.75
15743.14
15970.583
16566.205
16216.462
16216.952
16566.656
16566.506
16216.728
16216.484
16566.259
14983.185
14982.675
15166.533
15167.107
14982.027
14981.506
15165.39
15165.868
15535.764
15349.605
15350.09
15536.257
15536.959
15350.773
15351.307
15537.451
14981.443
14981.751
15165.575
15165.317
15165.586
14981.741
14982.064
15165.873
15535.766
15349.708
15350.062
15536.192
15535.923
15349.778
15349.521
15535.669
22316.9
16285.195
16283.449
22316.826
16284.114
16286.647
22317.29
22317.793
16566.687
16216.879
16217.301
16567.119
15970.464
15742.979
15743.385
15970.875
15744.36
15743.987
15971.496
15971.886
16567.73
16217.937
16218.284
16568.155
22318.128
16286.858
16284.221
22317.461
16283.504
16285.199
22316.906
22316.881
16568.426
16218.544
16218.071
16567.861
15972.135
15744.598
15744.11
15971.622
15742.987
15743.442
15970.934
15970.465
16567.181
16217.355
16216.872
16566.671
15537.508
15351.355
15350.905
15537.094
15167.147
14983.219
14982.805
15166.664
14981.742
14982.201
15166.045
15165.626
15536.444
15350.271
15349.842
15536.002
14983.026
14982.693
15166.55
15166.944
14982.154
14981.716
15165.605
15165.997
15535.99
15349.824
15350.221
15536.39
15536.973
15350.788
15351.14
15537.28
13716.823
13716.565
13858.235
13858.459
13716.113
13715.745
13857.397
13857.774
14144.165
14000.23
14000.57
14144.517
14144.993
14001.041
14001.317
14145.329
13715.766
13716.157
13857.818
13857.42
13716.665
13717.011
13858.642
13858.336
14145.502
14001.498
14001.142
14145.1
14144.556
14000.614
14000.253
14144.194
14802.052
14622.987
14622.651
14801.706
14446.532
14287.122
14286.757
14446.21
14285.786
14286.203
14445.645
14445.218
14801.115
14622.08
14621.641
14800.62
14800.587
14621.608
14622.031
14801.071
14445.187
14285.76
14286.164
14445.604
14286.947
14286.65
14446.103
14446.36
14801.596
14622.549
14622.813
14801.871
13716.971
13716.545
13858.215
13858.605
13716.008
13715.582
13857.228
13857.666
14143.981
14000.054
14000.459
14144.403
14144.97
14001.02
14001.461
14145.472
13715.532
13715.837
13857.484
13857.178
13857.668
13716.102
13716.209
13857.853
14144.39
14000.456
14000.63
14144.554
14144.192
14000.266
14000.003
14143.935
14285.52
14285.824
14445.25
14444.944
14445.278
14285.939
14286.176
14445.592
14800.655
14621.666
14622
14801.012
14800.686
14621.668
14621.408
14800.379
14800.432
14621.456
14621.909
14800.946
14444.992
14285.57
14286.046
14445.484
14287.092
14286.628
14446.081
14446.507
14801.577
14622.528
14622.963
14802.027
1768.1804
1780.8513
1939.9692
2538.1082
2538.4107
1889.6157
1836.1844
2654.3914
2597.589
1979.4951
1926.3492
1741.9862
1749.3205
2499.5555
2512.8215
1952.9276
1779.1502
2555.5285
2581.6379
1817.8969
3644.1044
3667.0052
3464.6559
3793.6213
3639.3096
3478.0223
4060.4554
3917.5133
3636.0079
3802.6429
3771.1912
3535.1474
18194.507
16713.536
17192.743
14535.338
17040.913
16866.452
16666.075
13751.889
3679.565
3929.1783
3582.0294
3514.4624
3590.3451
3608.0333
3557.1174
3442.9263
3398.4279
3435.6041
3678.5159
3577.7136
15838.373
17263.713
14662.616
14374.639
15185.643
15911.307
19954.484
15750.939
30429.162
30287.555
28201.973
29490.384
28247.676
26923.52
25770.223
28677.662
26927.277
28602.302
24508.121
27064.039
27456.674
27688.807
28184.37
27555.091
1854.4167
1843.4579
2619.9067
2599.617
3543.68
3887.7518
3752.8607
3876.3
3986.8988
3595.4814
16376.286
17992.043
18398.683
15221.303
29214.105
28934.726
26822.719
28174.901
64678.683
83966.365
82731.3
64681.29
67029.846
87801.795
84653.956
65220.392
54367.184
12426.652
108276.17
54150.771
104917.82
12426.95
54784.382
99950.005
54135.959
12427.357
102637.9
12427.679
87587.458
68141.808
88381.397
67018.646
67474.071
87871.786
90000.329
67645.34
56348.068
12427.3
103850.23
55426.678
104085.71
12427.141
54862.99
12426.823
105649.43
54902.164
103490.46
12426.57
12333.22
12333.528
12457.931
12457.656
12458.451
12334.034
12333.901
12458.307
12580.545
12580.698
12683.813
12683.728
12579.959
12580.201
12683.382
12683.102
12580.338
12580.041
12683.18
12683.52
12457.738
12333.301
12333.658
12458.064
12334.442
12334.124
12458.539
12458.899
12581.188
12580.784
12683.974
12684.348
12775.593
12775.251
12872.438
12872.784
12774.79
12774.406
12871.578
12871.969
13103.767
12983.713
12984.073
13104.096
13104.584
12984.551
12984.94
13105.018
12774.331
12774.651
12871.83
12871.507
12872.171
12775.016
12774.999
12872.18
13104.34
12984.289
12984.287
13104.312
13103.955
12983.933
12983.644
13103.7
13218.973
13219.231
13333.626
13333.366
13333.991
13219.602
13219.592
13333.991
13570.928
13444.108
13444.129
13570.966
13570.595
13443.762
13443.5
13570.334
13570.386
13443.557
13443.914
13570.756
13333.428
13219.037
13219.374
13333.774
13220.312
13219.872
13334.281
13334.727
13571.282
13444.431
13444.882
13571.742
13571.786
13444.934
13444.547
13571.401
13334.784
13220.375
13219.992
13334.399
13219.192
13219.517
13333.917
13333.586
13570.903
13444.06
13443.723
13570.562
13105.085
12985.012
12984.676
13104.705
12872.859
12775.672
12775.381
12872.564
12774.561
12774.936
12872.113
12871.732
13104.238
12984.216
12983.866
13103.92
12775.537
12775.333
12872.508
12872.708
12774.917
12774.556
12871.725
12872.091
13103.911
12983.858
12984.19
13104.207
13104.631
12984.61
12984.845
13104.904
13570.542
13443.708
13444.017
13570.86
13333.575
13219.183
13219.482
13333.879
13220.183
13219.909
13334.31
13334.587
13571.302
13444.455
13444.736
13571.594
63812.482
83466.424
83007.701
65355.997
64411.252
63865.11
83946.812
83485.918
53406.22
101744.78
12427.077
101817.65
53663.268
12426.794
55277.874
101633.89
100999.27
53891.983
12427.457
12427.68
83733.938
63384.713
82103.186
64854.144
66350.065
64443.875
85383.585
83954.377
54339.516
12427.77
103264.19
53501.748
103664.09
12427.486
100602.14
53417.189
12427.092
12426.802
53588.712
101452.16
12580.918
12581.275
12684.43
12684.106
12458.988
12334.53
12334.254
12458.671
12458.214
12333.802
12333.454
12457.892
12580.195
12580.486
12683.667
12683.334
12580.472
12580.19
12683.329
12683.651
12333.446
12457.885
12458.199
12333.788
12334.225
12458.639
12458.89
12334.439
12581.167
12580.881
12684.064
12684.31
12426.364
82047.513
66382.643
85135.053
64094.803
65734.355
83686.371
66575.829
86302.351
55055.695
105002.25
55846.233
12427.427
102470.35
12427.111
54550.004
12426.695
105397.51
54996.523
100145.76
12426.396
12580.548
12580.951
12684.102
12683.724
12333.89
12334.203
12458.663
12458.306
12333.058
12333.416
12457.825
12457.495
12579.79
12580.092
12683.262
12682.918
12580.057
12579.768
12682.896
12683.222
12457.469
12333.028
12333.384
12457.791
12333.967
12333.805
12458.217
12458.408
12580.671
12580.451
12683.62
12683.798
13571.418
13444.557
13444.083
13570.941
13334.404
13219.995
13219.532
13333.935
13218.691
13219.031
13333.425
13333.079
13570.413
13443.567
13443.214
13570.054
13104.712
12984.65
12984.242
13104.257
12872.51
12775.335
12774.983
12872.15
12774.127
12774.514
12871.673
12871.279
13103.763
12983.758
12983.394
13103.432
12775.003
12774.868
12872.021
12872.15
12774.47
12774.105
12871.257
12871.624
13103.408
12983.372
12983.703
13103.702
13104.099
12984.1
12984.264
13104.301
13570.021
13443.185
13443.485
13570.328
13333.053
13218.668
13218.964
13333.352
13219.562
13219.361
13333.75
13333.954
13570.732
13443.888
13444.095
13570.947
13570.685
13443.83
13443.287
13570.132
13333.684
13219.288
13333.154
1354.6296
1359.4996
1663.4847
1658.4688
1627.9257
1347.8398
1082.4412
1094.1867
1072.3496
7773.1923
7422.9328
7390.2845
7817.9757
6711.4141
6315.0509
6338.0193
6742.5277
6364.073
6748.0105
6651.0641
6270.0355
7337.7947
7713.747
7822.2005
7434.7136
6280.6746
6665.2705
6210.3809
6483.6719
6119.5203
6575.9487
7524.9
7159.6183
7626.8949
7249.7815
7337.9683
7717.1299
7675.5849
3761.2773
4121.717
4190.5954
3815.0934
4812.0014
5498.1194
4675.3891
5333.9508
5426.242
4748.4263
3897.9096
3838.1116
4221.9619
4290.2129
4260.7604
3861.8341
3871.1574
4280.7965
4844.0109
4830.4147
5520.4269
5550.2248
4790.3703
5471.7911
5566.1218
4860.4904
15812.623
16013.083
15439.727
15231.161
15243.841
15344.985
15945.421
15812.754
15752.784
15854.366
15145.185
15069.002
15744.777
15066.587
15270.578
15956.854
15681.451
15104.514
15148.53
15612.245
15612.142
15108.843
15295.945
15821.915
15902.251
15717.173
15090.064
15245.127
15743.234
15087.772
15080.612
15712.031
15653.188
15668.227
15154.902
15127.778
15074.967
15734.321
15776.141
15129.579
15026.734
15677.588
15175.226
15864.814
15590.25
15070.043
15268.644
15821.75
15900.4
15867.505
15279.235
15289.521
15804.618
15797.177
15107.768
15103.76
15276.479
15044.778
15741.513
15991.677
15835.015
15226.191
15476.333
16071.651
15705.235
14994.556
15790.083
15196.767
15145.215
15753.549
15880.62
15290.374
15654.357
15798.773
15098.994
14952.215
15539.825
15568.423
14840.285
14852.586
15052.945
15661.844
15609.45
15024.377
14934.453
15535.351
15803.063
15208.733
15439.58
15718.653
15012.65
14751.74
15395.026
15388.927
14869.254
14856.3
15458.065
15482.167
14842.444
14801.687
15614.475
15380.347
14946.787
14753.6
15290.442
14781.824
15016.065
15556.345
15496.369
14976.436
15110.235
15642.577
15584.432
15052.961
14943.95
15710.024
1660.5197
1370.7464
1363.8625
1668.9724
1353.6857
1347.6724
1648.4381
1660.3119
1091.2604
1102.4156
1082.889
1086.3836
6396.4284
6768.2283
6684.2753
6314.5628
6643.5726
6275.6588
6404.4741
6783.0684
7466.788
7317.8776
7844.0386
7685.6864
7368.1777
7727.0176
7826.1518
7454.6267
6585.0594
6272.2128
6215.8474
6655.6206
6657.6489
6786.7659
6393.7632
6268.7715
7730.2587
7343.8988
7468.7589
7860.3383
7254.9268
7619.8954
7711.2727
7332.0335
3934.2696
3889.1167
4265.5871
4320.3253
4241.8838
3879.3877
3938.1625
4345.4742
4916.6713
4809.2857
5483.3565
5610.083
4834.4116
5514.6002
5595.7129
4890.3468
4804.3216
4770.5613
5430.8366
5489.7465
4203.9668
3813.4325
3837.2468
4236.4228
3826.7466
4218.2242
4323.2233
3914.8678
4789.0768
4898.54
5594.6346
5472.0667
15875.64
16124.419
15532.757
15283.881
15187.782
15207.292
15816.942
15770.984
15702.639
15715.858
15007.692
15012.322
15801.182
15113.364
15347.226
16052.946
15543.513
15048.679
15011.082
15562.896
15664.304
15155.318
15362.547
15903.054
15973.144
15770.599
15298.744
15134.633
15605.786
15663.721
15024.586
14951.532
15662.153
15125.22
15145.729
15674.637
15590.878
15055.838
15227.747
15794.542
15817.035
15653.541
15118.714
14989.109
15729.973
15762.452
15096.34
15057.596
15943.687
15919.889
15310.935
15316.472
15830.017
15827.52
15116.856
15115.432
15768.049
15053.079
15252.865
15981.218
15887.539
16081.513
15466.242
15258.433
15549.877
15538.351
14889.759
14878.46
15450.765
14942.109
15149.313
15690.193
15495.085
14954.886
14926.899
15442.624
15553.536
14919.375
15086.678
15756.605
15587.115
15674.096
14892.585
14958.21
15161.682
15781.518
15664.063
15070.953
15084.768
15685.049
15920.934
15326.781
15596.405
15844.413
15136.57
14904.531
15133.659
15749.48
15836.668
15064.784
15317.111
15907.05
15793.424
15229.559
15190.252
15772.539
16070.044
15488.785
15700.854
16002.141
15306.487
15029.411
15680.826
15617.318
15110.085
15150.626
15757.514
15108.388
15098.801
15725.776
15688.063
15929.376
15269.12
15071.423
15575.657
15081.172
15325.134
15854.903
2110.1692
2492.6584
2511.1369
2114.6948
2477.3661
2082.1818
2082.7753
2486.2849
2855.9073
2847.7146
3223.8297
3237.8438
2859.4573
3260.5592
3220.1548
2891.0909
2131.3842
2130.5295
2523.465
2528.9341
2900.5671
2896.1992
3271.4872
3262.4014
2881.6227
2854.1927
3254.3556
3216.006
2101.551
2484.2868
2499.5971
2102.2661
10453.087
10429.02
10321.034
10346.632
10737.646
10804.909
10764.349
10688.433
10938.734
10765.971
10684.665
10872.801
10440.063
10569.485
10477.052
10325.231
10844.926
10764.139
10706.004
10798.198
10325.49
10390.759
10463.942
10410.806
10430.977
10471.712
10346.212
10539.15
10791.955
10931.721
10899.202
10748.463
11431.902
11266.929
11438.482
11614.514
11212.842
11322.607
11489.954
11371.547
12379.159
13179.541
12187.395
13391.845
12252.16
13266.904
13105.065
12111.304
11197.49
11262.317
11411.954
11341.025
13160.366
12085.95
12175.038
13065.638
13039.608
12071.858
12316.178
13303.758
11190.26
11328.843
11549.306
11397.227
10943.875
10976.096
10900.71
10870.703
10523.301
10624.901
10599.403
10497.243
10579.172
10474.982
10566.543
10657.134
10929.946
10868.754
10967.749
11022.411
10518.078
10279.297
10410.72
10406.329
10689.325
10755.955
10778.508
10660.917
10436.762
10317.669
10309.896
10419.696
10623.116
10712.892
10857.402
10786.09
11304.499
11126.09
11257.5
11451.453
11337.482
11207.194
11168.145
11295.634
13071.133
12037.69
12097.306
13001.903
11996.033
12209.32
13201.261
12960.07
11570.313
11423.591
11531.776
11382.712
11395.527
11492.976
11656.014
11556.055
12415.735
12317.647
13309.445
13415.883
12334.217
12279.883
13271.631
13334.174
7154.3297
7138.1501
8170.9935
8183.5865
9240.715
9250.4769
9614.99
9625.6645
10104.39
10090.297
9604.1949
10064.202
10131.047
9617.6381
9918.3521
9456.3736
9469.6122
9907.7661
9090.3798
9153.8311
9505.0579
9910.1807
9996.8406
9526.3953
7007.5925
8033.0692
8104.7573
7072.3827
8010.6513
7020.836
6992.2088
8042.4135
9106.0787
9064.863
9424.4876
9439.449
9944.0698
9906.8735
9458.3399
9927.5348
10013.717
9481.0173
9472.0231
9460.7289
9918.7148
9932.8991
9094.2506
9165.0716
9510.5885
9939.1302
10041.652
9539.3762
7010.8569
7067.8363
8107.594
8030.2297
22292.514
22210.418
24951.723
24944.187
25791.288
26724.341
26742.862
25807.097
25859.195
26029.948
26955.998
26791.554
22256.561
25001.898
25172.68
22499.207
26549.454
25637.087
25700.806
26602.373
25704.525
25927.292
26843.826
26624.048
22123.324
22379.936
25094.145
24854.742
22113.02
24796.89
24868.768
22250.83
27759.722
27543.38
28510.054
28725.351
27499.404
27458.667
28447.071
28417.019
29612.759
29397.126
30427.997
30646.614
29289.553
29307.848
30322.416
30311.482
28646.398
27659.153
27672.524
28652.264
27728.919
28718.087
28875.879
27883.979
30846.715
30697.306
29633.66
29785.311
29552.605
29553.861
30601.857
30609.73
26207.335
27128.288
26944.713
26023.947
25192.346
22439.878
22636.225
25382.649
25095.916
22408.825
22414.333
25050.168
25922.847
25884.985
26797.048
26836.854
25815.834
25952.428
26758.751
26898.172
25098.292
22372.892
22192.719
24949.138
24985.816
22220.128
22366.95
25075.372
25844.275
25934.657
26865.988
26790.757
27846.527
27700.609
28700.596
28857.742
29796.061
30697.353
30884.272
29621.869
30740.877
30746.085
29673.66
29690.499
27742.11
28741.673
28783.091
27797.514
28055.331
28841.165
29034.068
27861.61
27754.371
28715.955
28678.818
27710.844
30597.896
30627.846
29596.393
29559.903
29940.956
30988.268
30775.221
29732.072
10908.822
10969.87
10825.336
10895.031
10520.169
10620.996
10584.45
10469.204
13308.347
12320.61
11413.979
11560.278
22581.299
31700.679
32766.827
32573.976
31505.158
34673.155
33668.952
33476.672
34369.4
35185.955
36369.201
35639.469
35645.341
37059.923
36133.985
36046.117
37186.452
36282.882
36944.324
36362.112
37076.287
35881.451
35438.522
35496.74
36225.713
35050.877
35610.976
36189.563
35375.975
36782.99
35732.861
35518.228
36785.368
31673.189
32766.182
32583.097
31504.647
33489.451
33701.077
34623.284
34509.085
31745.637
32719.636
32817.672
31652.983
33728.546
34712.218
34389.365
33621.724
39953.868
41479.887
35952.805
39127.108
35840.607
37775.113
36927.671
38214.172
35768.467
39353.94
35481.859
37843.503
31500.126
31845.314
33073.562
32786.506
33100.777
31797.046
31663.074
33087.831
31043.302
31455.301
31218.759
30730.914
30685.783
31093.126
31353.074
31076.13
30794.241
30269.026
30719.455
31386.194
30981.772
31594.89
30938.021
30409.322
31135.616
30946.766
30548.143
31600.474
30873.716
31194.327
31397.283
31166.308
31314.529
31010.559
30433.91
30832.411
30717.544
31294.833
30509.613
30040.881
38206.707
36856.579
38125.405
35723.771
39699.545
35748.252
32979.584
31783.443
31663.193
33006.684
31370.822
31774.688
35869.935
33083.255
35530.244
32749.144
37947.333
39301.147
40510.579
38942.906
30188.645
30675.475
40284.231
32966.29
39999.397
32571.727
31122.362
31572.04
30802.081
34275.913
32078.225
33851.948
31639.896
30322.627
33922.087
31609.685
34191.198
31973.672
39845.026
32589.713
40321.594
33039.699
31677.531
31256.382
34119.809
31837.944
30492.03
30818.449
34277.26
32079.615
34131.702
31869.792
33634.644
31360.452
29975.728
30536.046
39576.95
32305.362
40043.751
32736.145
30921.796
31360.811
40296.493
33060.602
40123.405
32767.962
31714.35
31405.513
35457.122
36294.99
35767.807
35251.614
35459.033
35879.74
36194.397
35470.642
36890.572
36330.516
37023.886
36210.61
37045.987
36273.391
37262.997
36313.021
33478.205
33844.383
34487.612
34714.537
32921.83
31833.311
31520.817
32580.02
32554.87
31498.253
31487.667
32547.06
33436.764
33445.336
34381.22
34452.32
34659.64
33721.882
33724.093
34742.707
32817.384
31738.277
31738.066
32813.067
33057.373
31972.556
31933.715
33001.464
33970.567
33922.276
34640.022
34939.854
35492.312
35726.779
36454.165
35983.057
36502.797
37179.925
37313.11
36446.572
35862.496
36920.571
35616.027
36908.873
35818.162
36354.737
35544.081
35263.774
37551.978
36718.637
38023.573
35827.256
39032.516
35621.076
32946.721
31671.878
31949.17
33154.82
31941.162
36035.451
33261.162
35777.202
32968.481
31563.564
38042.243
39513.715
41090.845
39493.526
38540.986
36673.801
37960.2
35676.885
40073.447
35798.741
33052.551
33008.666
31798.415
31697.392
35393.679
32729.637
35527.084
32914.533
31749.813
31498.772
35961.42
37204.227
38488.576
37024.728
31242.08
31155.059
30633.154
31802.857
30937.27
31231.123
31575.313
31363.234
31476.999
31178.255
30616.291
31014.42
30880.164
31448.183
30636.393
30202.497
31420.895
31187.551
30833.01
31197.063
30970.902
30469.919
30974.512
31609.8
31043.485
30522.275
31118.101
31696.269
31414.629
31225.347
30808.959
31086.774
30450.519
30903.729
40455.839
33182.487
40172.153
32802.916
31842.328
31406.688
30941.585
34296.423
32160.672
33984.302
31778.443
30484.798
34051.166
31812.655
34302.325
32142.709
39979.933
32750.075
40407.547
33178.23
31457.243
31868.232
34193.152
31943.999
30629.162
31055.58
34502.444
32313.515
34376.048
32098.69
33881.694
31579.984
30161.892
30738.241
39914.365
32521.232
40419.321
32980.988
31590.408
31120.985
40637.76
33312.375
40300.889
32919.356
31973.136
31588.123
32081.958
33169.733
33010.886
31924.257
31848.895
32765.616
32933.425
31686.338
33676.868
33854.402
34565.96
34873.749
34104.214
33929.203
34910.122
34874.382
35494.999
35805.178
36388.547
35792.464
36151.005
35964.688
37085.453
37014.17
37299.903
36305.897
36217.608
37441.132
35854.134
36588.624
35816.136
35369.551
35259.485
35701.16
36371.272
35667.376
36252.647
36000.571
35441.799
35430.01
37028.238
36570.178
37252.169
36560.06
37061.937
36157.883
36027.223
37153.236
32530.17
32676.597
31592.521
31465.236
31729.586
32793.328
32715.375
31650.433
33609.932
33690.037
34694.666
34468.148
33588.524
34554.346
34430.565
33415.086
37493.618
39658.768
35734.552
38779.754
36132.738
38151.208
39459.737
36213.384
41370.827
36066.748
39849.082
38171.653
33386.725
33227.386
31798.432
32087.119
33370.362
32103.733
31701.25
33001.368
37181.242
36106.699
37338.467
35624.766
38633.022
35593.402
32945.095
33005.978
31848.408
31697.192
35553.211
32835.078
35789.974
33095.561
31855.007
31510.694
36974.219
38269.761
39527.398
37987.625
31458.547
31213.414
30681.708
31024.27
31007.198
31278.567
31516.713
31334.816
31340.985
31159.133
30742.186
31833.061
30976.091
31592.233
30827.967
30330.218
31708.243
31478.843
30938.389
31241.645
30866.251
31246.929
31658.879
31401.842
31150.699
30486.534
30985.515
31775.18
31262.889
31901.255
31202.772
30633.991
34337.7
32148.089
30861.714
30299.193
33848.275
31640.143
30761.108
31112.417
34458.491
32327.467
34240.722
32055.057
40673.658
33402.034
40410.51
33101.248
31763.74
32092.357
39878.141
32663.347
40393.675
33076.189
31736.368
31295.812
34624.996
32392.266
34198.616
31895.546
31095.132
30489.664
40794.09
33346.767
40351.072
32844.405
31441.588
31984.449
31167.588
30649.336
40345.704
33021.164
40868.927
33459.188
32102.274
31678.907
34650.837
32438.3
34184.211
31960.098
31964.646
31767.559
32837.279
33064.899
32696.208
31631.524
31718.589
32783.313
34620.798
34612.743
33583.747
33687.497
34009.55
33744.586
34757.758
34870.263
35597.33
35738.458
36471.14
35978.555
37314.1
36255.521
36394.205
37186.669
37237.863
36554.93
36515.443
37464.897
35622.227
36472.531
36006.266
35485.92
35708.284
35974.91
36638.837
36157.686
36651.194
36573.34
37399.206
37315.524
36882.876
35795.307
35511.964
36821.808
35859.939
36349.247
35509.969
35269.76
31999.925
31953.988
33042.674
33083.186
33970.497
34001.591
35016.273
34898.407
34708.39
35071.012
34133.893
34074.172
32133.554
33212.308
33167.234
32104.4
39252.309
38367.409
35989.334
40737.48
36059.744
37157.703
36068.358
37315.785
35704.886
38836.315
35652.982
37356.706
32968.555
33074.962
31901.025
31707.543
33250.828
31857.438
32008.205
33242.834
31564.948
31377.07
31001.387
31282.061
30971.359
31331.915
31618.534
31393.604
31171.1
30611.224
31131.618
31816.725
31194.953
31857.791
31287.465
30714.098
31518.63
31205.795
30641.379
31068.359
31066.849
31375.717
31721.964
31484.791
31360.105
31258.956
30756.987
31902.174
30890.393
31453.14
30651.578
30213.553
38226.337
38784.667
36141.026
39686.033
35903.883
37517.92
38658.471
40125.585
36176.399
41683.412
35905.404
40080.847
33349.444
31995.621
31644.948
33076.82
33159.458
31839.295
32118.283
33370.206
33044.334
31630.115
30620.994
31128.009
40849.537
33468.085
40539.278
32102.84
31124.723
34511.076
32359.048
34204.402
31992.709
30684.869
34266.705
31994.155
34558.152
32379.758
40320.779
32999.362
40743.446
33429.336
31679.354
32093.053
34380.409
32118.615
30776.202
31187.522
34714.86
32483.386
34492.183
32184.633
30801.54
30242.412
34015.634
31683.691
33113.922
31705.035
40203.391
32730.277
40634.568
31277.786
40965.03
33525.822
40595.496
33116.064
32147.375
31745.303
39115.942
38981.77
38525.739
34456.389
38436.413
34413.422
13295.925
13291.401
38343.532
38880.603
38283.823
34286.392
37894.769
34006.427
13291.337
13295.715
38491.831
38907.279
38000.684
34056.391
38368.571
34328.19
13292.526
13298.115
38689.34
39077.395
38504.433
34410.967
38171.531
34211.477
13296.165
13291.954
38841.179
39232.755
38324.927
13295.815
34297.72
38653.501
34550.125
13290.741
38962.163
39332.861
38757.401
34590.434
38443.126
34422.951
13290.983
13295.412
39214.809
39428.193
38652.99
34560.199
38816.948
34682.408
13295.397
13290.942
38601.001
39192.375
38587.526
34546.166
13290.929
38101.723
34198.052
13295.372
14745.769
16712.566
14740.797
16709.237
14740.764
16708.94
14745.622
16711.781
14740.704
16709.132
14745.578
16712.351
14745.606
16711.763
14740.719
16708.889
14748.655
16715.872
14742.487
16711.188
14741.845
16710.186
14746.455
16712.743
14746.192
16712.436
14741.227
16709.47
14741.155
16709.646
14745.955
16712.781
39277.13
38623.262
38693.272
34605.055
38226.329
34207.466
13290.892
13295.418
39256.898
39528.244
38736.498
13295.282
34610.134
38958.465
34780.93
13290.854
39608.171
39121.534
38932.185
34793.519
38607.288
34527.267
13290.833
13295.276
39027.195
39543.519
38419.574
34426.169
38867.005
34777.293
13295.333
13290.844
39583.118
39217.212
38694.952
34619.674
39023.292
34807.277
13291.185
13295.762
39093.797
39542.327
38550.275
34476.059
38983.51
34784.686
13295.531
13291.111
39377.33
39638.7
38817.802
34696.085
39077.021
34877.336
13292.009
13296.072
38730.468
38363.224
34324.379
39330.502
38754.619
34669.385
13292.827
13298.431
14741.915
16710.27
14746.36
16712.648
14742.822
16711.543
14748.995
16716.205
16709.212
16712.25
16712.557
16709.374
14745.755
14740.909
14740.992
14746.018
14745.536
16712.303
14740.612
16709.03
14740.6
16708.757
14745.474
16711.617
14745.481
16711.626
14740.624
16708.786
14740.665
16709.093
14745.632
16712.417
31422.413
32103.27
32610.169
31796.727
32925.688
32447.088
33111.754
33745.293
33441.093
34305.058
35026.878
33959.86
32817.796
33720.339
33031.41
32261.414
34615.209
35495.569
34411.422
33670.375
35570.725
37048.639
36042.515
34782.349
36037.246
37731.488
36625.061
38486.296
34856.966
36091.452
36799.036
35433.331
36106.396
35073.078
35853.329
37065.92
36905.598
38413.62
37704.51
36321.785
36687.336
37471.569
38218.135
37327.359
35344.992
36174.622
36787.905
35811.345
32899.005
33835.675
33242.867
32415.889
33700.128
34438.981
34250.746
35140.678
32606.703
32632.649
33524.07
33422.903
33907.522
34133.852
34860.841
34488.578
12506.455
12490.428
12238.395
32698.973
12253.204
34194.813
39091.356
41107.919
40262.882
38046.232
39645.451
31824.402
37351.223
33007.829
38034.911
40170.206
12485.372
12233.847
12243.123
12495.338
12495.43
12485.588
12234.063
32834.395
12243.211
34073.5
39008.273
41127.34
40312.632
38097.063
34086.343
38847.044
33221.344
38373.373
40551.965
40821.31
12490.897
12238.865
12254.336
12507.578
43343.332
42447.523
42543.347
43280.84
43753.126
42942.252
42285.794
43279.94
43964.315
44272.353
45199.833
45084.51
43951.689
43666.908
44446.566
44974.865
42195.717
42811.956
43538.175
43139.856
43761.706
43923.987
44718.273
44805.086
43391.516
43370.488
44507.778
44363.569
41657.623
42670.564
42865.047
42026.45
39549.885
39864.888
12650.205
35088.486
12649.454
34836.256
38055.595
38462.676
39737.362
37060.797
39716.4
37098.472
39528.092
39414.202
37374.039
39711.281
37299.235
39870.767
12650.338
34653.203
12650.217
35004.545
38219.11
38463.275
37662.565
40042.388
39927.821
40078.946
37495.072
40065.582
37225.684
39551.04
39306
39861.176
37453.635
39927.49
12650.914
34560.439
12650.89
35081.358
38399.197
37990.139
12650.515
35255.142
12650.457
34976.538
38642.435
38499.937
31019.202
31712.758
31853.684
31071.642
32089.916
32321.93
32936.433
32599.858
33523.953
34039.126
33352.953
33010.076
31972.754
32810.189
32576.34
31808.644
34989.298
34321.283
35083.938
35942.683
36576.514
37307.235
36105.751
35535.189
34557.651
35148.906
35922.682
35226.551
33346.696
33786.769
34643.419
34094.229
35390.771
35891.255
34974.618
34625.007
32030.766
32873.643
32914.201
32129.387
33317.408
33399.257
34052.043
33835.478
32572.913
34001.396
33413.516
33035.674
12507.644
12491.042
12239.009
32280.268
12254.398
33366.709
38428.579
40497.766
39763.876
37608.715
12485.762
12234.236
12243.42
12495.636
13931.923
13930.409
17951.56
15458.055
17947.106
15455.082
13932.049
13930.442
17951.729
15458.198
17947.151
15455.119
13929.624
17946.046
15454.194
13930.361
17949.484
15456.288
13930.048
17946.616
15454.674
13931.776
17951.363
15457.892
15669.318
22308.584
16279.641
16277.801
22308.375
16278.433
16280.985
22308.781
22309.289
15738.96
15738.568
15965.924
15966.33
16561.751
16212.191
16212.552
16562.195
15531.689
15345.609
15345.975
15532.014
22307.52
16278.962
16277.25
22307.527
16277.973
16280.599
22308.064
22308.689
16560.067
16210.511
16210.986
16560.564
15964.294
15736.983
15737.428
15964.755
15738.551
15738.081
15965.428
15965.913
16561.23
16211.685
16212.126
16561.757
22309.074
16280.835
16278.096
22308.267
16277.315
16278.993
22307.62
22307.568
16562.024
16212.384
16211.811
16561.367
15966.164
15738.795
15738.2
15965.552
15737.009
15737.478
15964.808
15964.324
16560.626
16211.046
16210.545
16560.105
15531.848
15345.811
15345.244
15531.324
15161.698
14977.843
14977.302
15161.093
14976.18
14976.654
15160.428
15159.993
15530.623
15344.564
15344.118
15530.168
14977.617
14977.201
15160.988
15161.469
14976.611
14976.159
15159.972
15160.382
15530.142
15344.095
15344.516
15530.575
15531.211
15345.138
15345.579
15531.612
13711.412
13711.065
13852.756
13853.065
13710.571
13710.201
13851.874
13852.253
14138.691
13994.729
13995.072
14139.041
14139.565
13995.584
13995.943
14139.976
13710.202
13710.596
13852.28
13851.877
13711.13
13853.288
13852.826
14140.174
13996.177
13995.659
14139.644
14139.075
13995.101
13994.734
14138.699
14280.312
14280.742
14440.187
14439.748
14441.242
14281.819
14281.324
14440.785
14796.726
14617.689
14617.221
14796.247
14795.616
14616.608
14616.205
14795.155
14795.135
14616.189
14616.568
14795.575
14439.735
14280.302
14280.706
14440.151
14281.613
14281.241
14440.697
14441.031
14796.15
14617.129
14617.473
14796.505
22308.611
16280.552
16277.875
22307.913
16277.125
16278.821
22307.325
22307.305
15736.816
15737.269
15964.597
15964.131
15965.848
15738.487
15737.958
15965.306
16561.691
16212.062
16211.563
16561.112
16560.408
16210.833
16210.351
16559.907
22307.296
16278.818
16277.133
22307.348
16277.905
16280.613
22307.965
22308.723
16559.898
16210.344
16210.85
16560.428
15964.127
15736.815
15737.289
15964.618
15738.571
15738
15965.35
15965.936
16561.154
16211.608
16212.151
16561.784
15531.546
15345.514
15345.007
15531.084
15161.405
14977.554
14977.067
15160.856
14975.979
14976.443
15160.217
15159.795
15530.414
15344.354
15343.921
15529.973
14977.621
14977.103
15160.894
15161.476
14976.458
14975.98
15159.795
15160.233
15529.972
15343.922
15344.371
15530.434
15531.126
15345.048
15345.591
15531.628
22308.267
16279.45
16278.111
22308.896
16279.557
16283.311
22310.522
22312.864
16560.605
16211.03
16211.937
16561.549
15964.795
15737.465
15738.323
15965.677
15741.413
15739.724
15967.109
15968.822
16563.009
16213.408
16215.092
16564.804
22308.814
16280.698
16278.111
22308.265
16277.449
16279.253
22307.812
22307.971
16561.849
16212.217
16211.821
16561.376
15966.003
15738.638
15738.205
15965.56
15737.26
15737.597
15964.935
15964.588
16560.766
16211.18
16210.821
16560.393
15531.694
15345.657
15345.24
15531.324
15161.543
14977.688
14977.286
15161.082
14976.377
14976.732
15160.515
15160.203
15530.731
15344.661
15344.34
15530.404
14980.405
14978.751
15162.554
15164.26
14977.419
14976.57
15160.398
15161.208
15530.605
15344.54
15345.363
15531.445
15532.824
15346.726
15348.384
15534.441
14796.441
14617.41
14616.991
14796.014
14440.971
14281.556
14281.107
14440.561
14280.117
14280.539
14439.98
14439.548
14795.405
14616.397
14616.004
14794.953
14139.922
13995.893
13995.463
14139.437
13853.019
13711.371
13710.959
13852.641
13710.046
13710.436
13852.107
13851.71
14138.88
13994.917
13994.556
14138.511
13711.442
13710.996
13852.677
13853.087
13710.45
13710.056
13851.717
13852.121
14138.516
13994.562
13994.931
14138.893
14139.47
13995.498
13995.957
14139.983
14794.953
14616.006
14616.41
14795.419
14439.552
14280.122
14280.553
14439.994
14281.616
14281.141
14440.594
14441.03
14796.049
14617.026
14617.471
14796.505
13714.48
13712.689
13854.368
13856.093
13711.376
13710.617
13852.281
13853.054
14139.081
13995.127
13995.868
14139.831
14141.14
13997.183
13998.927
14142.91
13710.421
13710.707
13852.377
13852.085
13711.174
13711.525
13853.165
13852.853
14140.055
13996.033
13995.672
14139.643
14139.148
13995.186
13994.931
14138.886
14796.572
14617.539
14617.2
14796.228
14441.099
14281.686
14281.313
14440.768
14280.492
14280.808
14440.251
14439.926
14795.686
14616.673
14616.338
14795.292
14795.484
14616.53
14617.355
14796.371
14440.12
14280.687
14281.491
14440.935
14284.5
14282.799
14442.245
14443.878
14797.696
14618.676
14620.292
14799.306
16542.741
17026.597
17413.238
17808.685
15577.416
15988.7
18261.864
18265.245
18069.92
18320.67
18190.528
18193.96
18317.14
17964.563
17968.042
17425.083
16657.59
1827.6025
1983.81
2589.6971
1846.5019
1832.3507
1994.7279
2602.1961
2618.853
1883.1026
1849.6946
2003.2705
2627.8211
2658.7811
3526.8901
3853.0015
3657.7312
3524.9021
3894.9202
3996.4962
3574.4293
3851.6243
3777.5251
3601.1164
4108.4224
3850.1303
3657.4357
19654.895
20473.121
17995.224
14403.866
17544.958
17834.523
20620.995
20161.348
25981.471
28422.83
27869.178
28630.477
28483.861
27785.582
1861.142
1829.6151
1984.9465
2623.5335
2591.4954
1795.7808
1830.2948
1984.9151
2565.5668
2602.5353
1863.4846
1870.3805
2021.8688
2652.6674
2637.6488
1958.4523
1919.3716
2043.8375
2714.8492
2751.5836
3685.3113
3786.9777
3506.1781
3975.5308
3878.2717
3578.214
3637.4043
3674.647
3484.9341
3687.1531
3954.096
3552.2025
18346.564
14245.952
17037.251
18868.728
18400.827
15495.053
18466.381
18204.924
3895.6859
3640.9857
3597.0187
3806.0464
3866.9163
3598.0262
3954.6456
3870.1476
3731.0579
4249.1845
4009.3012
3795.3824
15021.316
18505.615
17934.131
14666.323
17888.358
15316.236
21384.479
20732.005
29437.617
28014.28
29055.113
27176.169
27067.742
26927.512
26041.231
28405.146
29235.32
29147.468
27491.047
29214.264
30336.074
30664.941
31024.289
31228.4
12575.624
12679.095
12678.739
12328.33
12328.683
12453.002
12452.679
12574.894
12575.188
12678.295
12677.96
83567.131
70571.388
86382.792
64704.604
54346.838
12421.969
108230.48
54959.898
100535.34
12421.676
12575.169
12574.883
12677.951
12678.277
12452.669
12328.321
12328.665
12452.984
12329.355
12329.11
12453.436
12453.72
12575.92
12575.595
12678.709
12679.005
55200.816
100963.08
54870.413
12421.666
100705.7
12421.953
66500.617
88695.607
88431.63
65751.481
69112.808
67332.424
88833.324
86056.179
55500.688
12422.338
104400.75
57049.421
104342.77
12422.593
13438.974
13565.842
13214.412
13328.814
13213.597
13213.919
13328.311
13327.982
13565.32
13438.46
13438.126
13564.977
12979.533
12979.151
13099.144
12867.421
12770.282
12769.954
12867.086
12769.125
12769.501
12866.624
12866.243
13098.662
12978.678
12978.329
13098.345
12770.188
12769.923
12867.052
12867.324
12769.485
12769.117
12866.237
12866.61
13098.343
12978.325
12978.665
13098.648
13099.106
12979.114
12979.432
13099.469
13564.978
13438.127
13438.443
13565.298
13327.981
13213.593
13213.903
13328.294
13214.737
13214.368
13328.764
13329.14
13565.783
13438.918
13439.298
13566.166
13566.131
13439.265
13438.831
13565.686
13329.107
13214.703
13214.285
13328.68
13213.479
13213.8
13328.186
13327.859
13565.174
13438.326
13437.994
13564.835
13099.43
12979.386
12979.025
13099.02
12867.27
12770.125
12769.814
12866.954
12768.989
12769.364
12866.495
12866.116
13098.543
12978.555
12978.208
13098.227
12770.188
12769.841
12866.981
12867.337
12769.372
12768.995
12866.122
12866.505
13098.238
12978.216
12978.568
13098.556
13099.053
12979.053
12979.456
13099.503
13564.846
13438.006
13438.342
13565.189
13327.87
13213.487
13213.812
13328.2
13214.778
13214.319
13328.716
13329.183
13565.724
13438.866
13439.341
13566.204
12575.472
12575.843
12678.934
12678.592
12453.639
12329.275
12328.988
12453.313
12328.183
12328.535
12452.852
12452.529
12574.746
12575.039
12678.151
12677.817
55477.898
101732.16
101917.57
56626.795
12422.516
12422.223
66415.328
84974.422
88632.344
67589.245
69228.109
87166.736
65944.515
86408.236
54916.428
100897.86
54735.761
12421.828
105486.48
12421.534
12575.042
12574.747
12677.82
12678.156
12452.531
12328.187
12328.504
12452.821
12329.327
12328.978
12453.302
12453.695
12575.901
12575.499
12678.619
12678.995
54486.273
12421.539
106533.36
54351.549
105006.49
12421.833
65855.477
86783.406
67142.974
87901.761
65801.25
64509.028
82907.107
85511.449
104016.03
54767.359
12422.248
55607.586
100081.73
12422.568
13566.292
13439.433
13439.05
13565.904
13329.279
13214.875
13214.5
13328.898
13213.827
13214.057
13328.45
13328.219
13565.445
13438.595
13438.362
13565.207
13099.599
12979.552
12979.226
13099.228
12867.431
12770.282
12770
12867.147
12769.274
12769.58
12866.721
12866.415
13098.791
12978.792
12978.524
13098.56
12772.92
12771.115
12868.342
12870.157
12770.001
12769.419
12866.566
12867.183
13098.73
12978.683
12979.295
13099.332
13100.571
12980.498
12982.356
13102.462
13565.403
13438.555
13439.234
13566.1
13328.405
13214.002
13214.633
13329.059
13217.785
13215.896
13330.341
13332.22
13567.409
13440.529
13442.393
13569.257
12575.649
12575.999
12679.089
12678.773
12453.799
12329.439
12329.164
12453.488
12328.431
12328.735
12453.052
12452.783
12575.007
12575.243
12678.359
12678.088
54864.15
101218.97
99429.806
55177.672
12422.687
12422.404
86002.064
65206.333
84440.551
65651.614
81238.431
67669.911
87580.671
63002.264
54068.337
12422.032
113146.55
55247.069
99399.47
12421.785
12575.585
12575.144
12678.228
12678.738
12452.921
12328.574
12329.027
12453.369
12331.541
12329.95
12454.352
12456.066
12578.41
12576.595
12679.802
12681.623
55358.411
101970.39
54862.245
12421.934
101827.64
12422.311
64438.498
65204.359
88439.324
87361.391
85645.09
67742.436
88184.22
67782.559
56368.649
12423.126
106960.26
58108.576
104819.87
12424.65
2925.8864
2948.5522
4650.7201
3302.5762
3321.4567
4710.3461
4203.4534
4216.019
5090.9579
5100.0312
4230.6851
4267.4918
5201.5401
5080.9733
4423.4857
4442.8161
5346.6617
5315.1841
3448.2093
4312.0342
4332.0363
5244.6913
5172.1683
3386.202
2978.2889
4844.2935
4779.4002
2991.6448
2915.2447
2927.657
4630.457
3267.926
3258.5225
4632.926
4115.861
4959.4196
5088.3056
4159.409
4190.4805
5094.1601
5039.8072
4164.5318
2934.7523
2957.3024
3371.4426
3318.5845
4685.687
4775.1762
5145.6881
4246.7546
4246.7236
5152.1738
4319.1157
5177.6954
5318.0407
4381.2791
10274.953
4872.6868
10437.797
5020.5485
6815.3592
6816.1955
8063.5477
7836.779
10600.397
5240.8259
10267.138
4947.1726
6797.4502
7045.0277
7928.3726
8464.219
11193.194
5904.128
10759.819
5328.6833
7194.9836
7283.7967
8974.3996
8447.9457
10572.685
5159.6677
10543.391
5142.3283
6918.7877
8179.5377
8392.3232
7067.8014
35383.178
31909.783
28147.346
26200.794
30047.773
28593.025
27671.008
26059.16
10135.103
5025.4338
11137.664
5518.2085
7233.0182
6912.8467
8786.042
8090.5372
4904.43
6807.7011
6820.715
7920.8116
7989.2627
4877.8473
10049.413
10040.208
10128.796
4834.2029
9884.6788
4647.1932
6780.0083
6569.9165
7543.0974
7957.0865
5145.5361
6748.4774
6845.6084
8197.0839
7785.3217
4833.3184
10504.567
10159.133
27498.208
34130.161
25692.368
24861.098
27277.039
29176.846
29075.886
28239.755
73891.728
77237.331
77321.046
76452.126
77650.345
74530.773
73288.21
69908.822
73018.863
76743.434
71479.473
73752.669
73043.169
74189.82
70454.951
72964.801
4819.7754
3409.8121
4384.8736
4403.0936
5320.8256
5276.0929
4307.9437
5182.0927
5272.7644
4338.6013
6897.7796
7074.0351
5136.067
8136.3233
8524.9221
5318.0717
10614.529
10619.874
10705.669
5325.0048
10971.159
5792.6609
7259.1983
7129.0262
8427.6168
8883.0102
33613.053
36378.579
29829.496
29752.882
75234.583
69757.922
74436.189
67832.953
17759.859
20356.124
20356.262
17761.819
17760.576
20356.293
20356.202
17759.395
16713.413
23639.76
16713.653
23639.77
16714.404
23639.858
16714.052
23639.793
20356.077
17759.266
20355.941
17760.408
17761.794
20355.838
20355.845
17759.865
16713.946
23639.286
16713.779
23639.444
16713.491
23639.564
16713.303
23639.626
17760.182
20356.249
20356.24
17762.101
17760.728
17759.612
20356.384
20356.281
16713.817
23639.989
23639.996
16713.593
16714.41
23639.811
23639.949
16714.181
20356.398
17759.485
20356.307
17760.669
17762.01
17760.08
20356.4
20356.306
16714.527
23640.014
16714.222
23640.017
23640.017
16713.837
16713.606
23640.014
20355.682
17758.926
20355.601
17760.026
17761.646
20355.758
17759.615
20355.625
16713.699
23639.251
16714.043
23639.303
16713.288
23639.221
16713.046
23639.202
2156.4869
2554.0232
2578.523
2160.4754
2558.7584
2142.5766
2145.4978
2568.8278
2945.8458
2938.7156
3325.9019
3337.9437
2932.3273
3354.7159
3303.0657
2968.5877
2921.6931
2886.4762
3240.3835
3289.1816
2132.9459
2515.8358
2540.2814
2136.8295
13464.34
12400.449
12470.631
13384.714
11635.086
11464.622
11630.664
11809.905
11491.743
11540.738
11702.643
11653.354
12571.228
12385.448
13370.394
13576.201
11030.876
11065.083
11010.227
10976.906
10607.453
10691.452
10667.874
10584.071
10637.042
10541.352
10676.666
10748.705
10991.332
10941.114
11103.504
11136.562
10814.623
10582.778
10707.087
10719.416
10951.442
11033.262
11178.097
11116.023
11054.293
11035.833
10969.687
10989.595
10669.792
10567.634
10602.014
10681.953
11500.371
11656.748
11669.648
11511.009
12425.027
13417.611
13416.886
12421.753
13573.107
13343.364
12370.575
12563.156
11613.895
11470.336
11639.624
11797.66
10626.969
10509.593
10618.98
10708.047
10959.974
10884.741
11011.749
11067.276
10594.486
10330.575
10468.16
10490.114
10833.486
10814.866
10742.136
10765.538
10462.773
10353.506
10389.428
10475.209
10766.697
10941.013
10875.644
10676.261
13167.8
12182.957
12180.839
13157.087
11267.393
11416.194
11433.026
11279.602
12060.405
12303.962
13307.029
13034.49
11392.217
11181.55
11316.451
11546.62
11527.45
11403.168
11547.217
11685.732
12302.165
13278.401
13433.367
12436.79
12334.227
13319.658
7056.9547
8076.8132
8166.5522
7136.4824
9311.5457
9673.4791
10111.229
10190.772
9688.4168
9124.7952
9943.3652
9483.5748
9484.3404
9964.0796
9558.4653
9964.6338
10073.508
9585.7407
9213.8151
7269.6912
7189.6702
8222.2977
8326.7294
8232.8195
7200.0241
7207.772
8238.9977
9309.6158
9297.9875
9673.0933
9663.7971
10155.833
10163.924
9664.634
10126.09
10221.507
9687.7334
9294.9521
10144.76
9664.0954
9665.2568
10162.01
9754.6205
10190.545
10288.699
9776.3695
9399.1537
22359.177
22426.346
25016.275
25017.944
24980.227
25184.489
22548.414
22317.294
25801.74
26006.106
26931.498
26714.088
25842.116
26750.196
26739.738
25833.872
27856.088
28589.954
28833.106
27626.517
27654.881
28602.457
28588.835
27637.74
29445.334
29461.773
30473.213
30458.626
29728.175
30776.042
30489.724
29463.687
27822.057
27801.074
28771.648
28784.793
30698.979
29660.757
29654.234
30691.444
30921.983
29869.179
30890.789
29852.541
27981.441
28965.681
28968.422
27998.401
22500.683
22435.956
25111.436
25166.647
25988.663
25948.359
26873.139
26903.624
27083.672
27044.169
26111.253
26169.664
22563.33
25263.848
25338.487
22659.682
25094.17
22422.883
22354.7
24949.682
25925.807
25777.462
26686.287
26848.367
25724.232
25834.933
26644.584
26759.65
25000.952
22315.264
22191.97
24883.25
25072.358
22308.021
22384.097
25076.157
25911.506
25909.323
26822.03
26842.746
27681.157
27562.757
28533.475
28661.006
29558.688
29419.183
30455.948
30611.119
29587.237
29653.838
30612.559
30694.66
27774.175
28750.522
28700.224
27735.466
27772.981
28741.904
28561.628
27598.279
29627.658
30469.067
30657.994
29438.681
3336.8507
3005.7637
2981.6518
3397.6003
2592.2146
2171.8766
2609.9967
2178.4046
2198.0266
2596.9667
2616.975
2201.1597
2982.6218
3010.2421
3395.4347
3351.6351
2139.8563
2541.6385
2577.7681
2151.263
2132.6339
2537.249
2547.3864
2135.7821
2908.1718
2924.4272
3308.0294
3281.9042
2919.0248
2973.0751
3369.3686
3291.2025
10875.973
10645.19
10787.959
10757.483
11210.696
11093.061
10994.451
11130.799
11124.854
11112.329
11029.206
11037.006
10764.724
10651.637
10674.291
10780.746
11004.663
10995.863
10912.129
10925.637
10544.613
10654.93
10660.852
10557.876
10759.752
10647.749
10801.022
10879.965
11098.623
11027.174
11205.586
11260.469
11736.499
11548.561
11699.849
11899.159
11431.876
11435.408
11579.2
11570.28
12662.942
12453.173
13428.711
13664.595
13314.561
12327.509
12322.398
13309.135
11556.85
11697.535
11696.483
11555.583
12463.333
13444.53
13434.505
12449.13
12395.175
13368.949
13556.298
12555.805
11648.83
11509.591
11639.941
11793.083
10914.049
10887.665
10804.478
10833.831
10665.547
10447.528
10556.928
10584.669
10571.742
10461.089
10448.803
10553.327
10819.481
10891.964
11044.315
10996.048
11024.594
10999.652
10944.868
10975.438
10914.775
10988.971
11190.121
11141.911
10539.041
10657.481
10728.093
10798.076
10631.869
10556.576
10545.22
10626.25
13450.483
12378.233
12454.172
13367.414
11462.881
11512.007
11681.121
11627.731
11670.099
11428.935
11577.346
11837.853
12326.956
13308.037
13611.273
12599.173
11307.934
11350.521
11489.855
11445.846
12186.605
12250.639
13244.463
13171.518
12454.406
12231.243
13204.891
13447.44
11333.481
11480.282
11690.247
11521.211
7375.0365
7299.9634
8335.24
8413.1515
8263.7129
7225.6746
7325.9064
8372.2464
9446.5231
9320.4257
9682.6761
9679.5585
10147.293
10137.422
9800.0699
9825.5665
10347.104
10245.65
9411.1681
9780.193
9780.3013
10260.663
10242.391
9845.444
10273.942
10356.142
9861.7292
9487.0126
9243.6451
9216.8775
9597.7891
9584.5973
10044.593
10050.592
9603.3969
10046.784
10140.054
9627.0716
8157.9743
7131.3337
7142.3559
8171.0881
7141.6871
8171.1039
8292.2662
7253.6996
9240.4895
9358.7452
10148.403
9710.4031
9739.1917
10264.042
9611.6299
10105.15
10109.037
9607.1193
22437.22
22602.852
25200.592
25093.442
25131.653
25204.461
22492.758
22377.652
25972.111
26039.9
26976.783
26897.764
25930.276
26846.755
26944.969
26032.273
27915.589
28799.166
28907.285
27822.88
27758.708
28714.191
28804.815
27848.034
29666.828
29580.653
30685.734
30599.562
29824.472
29687.479
30722.621
30890.576
27978.907
28955.795
29004.793
28018.968
28153.765
29134.267
29119.68
28141.945
30007.035
30033.45
31051.412
31078.985
29849.007
29895.829
30945.259
30897.481
22618.896
22616.4
25296.779
25284.446
26120.016
26146.354
27080.765
27047.4
26293.933
27220.944
27219.36
26300.852
22718.672
22768.506
25457.772
25447.441
29952.214
29818.519
30866.795
31013.246
27841.512
28829.043
28733.125
27763.394
28039.151
29031.899
28913.815
27919.646
29734.579
30787.365
30646.033
29607.633
26037.449
26162.91
26975.681
27097.096
25325.362
22554.384
22389.037
25179.057
25106.404
22386.242
22451.249
25084.72
25954.812
25921.616
26839.84
26895.41
26754.022
25751.549
25839.797
26664.507
25016.063
22405.48
22262.43
24912.913
25104.49
22402.555
22522.197
25129.99
25946.156
25959.156
26864.617
26872.852
27661.221
27573.679
28533.203
28627.716
29506.642
30543.864
30432.745
29404.73
29657.876
29599.028
30617.206
30689.086
27798.597
28766.776
28725.43
27769.483
3765.0335
3801.5759
3745.739
3766.1533
4606.3482
4587.3806
5523.7055
5555.1108
4607.8671
5595.5684
5547.0845
4647.9621
3841.5191
3840.02
4692.519
4709.48
5650.3298
5658.9599
4630.8511
4605.6352
5611.2163
5546.6982
3760.1433
3791.439
14317.458
14234.923
14916.63
15021.163
16514.667
15748.9
15625.98
16372.931
15900.177
15630.928
16381.744
16659.735
14230.427
14475.905
15174.383
14915.191
15789.358
15571.406
16322.349
16559.604
14860.267
15056.393
14346.787
14176.631
14196.756
15090.686
14891.951
14381.774
15616.283
15819.586
16582.978
16370.501
17365.328
17148.933
18002.619
18219.171
17092.479
17348.853
18218.981
17945.819
19158.657
20302.962
18950.521
20485.024
19179.91
20548.711
20269.618
18896.237
17145.63
17299.781
18165.729
18001.665
20480.47
18956.357
19119.739
20338.403
20376.903
18981.332
19273.555
20650.895
17156.92
18019.466
18313.097
17443.541
15840.281
15977.133
16746.425
16590.765
15244.883
14538.723
14438.537
15120.726
14432.103
15133.182
15220.674
14523.665
15864.317
16626.294
16697.341
15939.574
14394.835
14901.524
14222.024
15079.371
16504.712
15602.614
15747.921
16347.85
14332.913
15030.214
14898.981
14218.931
16352.546
15604.797
15790.247
16540.117
17316.294
17122.222
17980.135
18175.47
18151.46
17281.265
17114.551
17967.718
20502.373
18917.917
19109.974
20304.645
18936.785
19130.466
20507.128
20329.246
18410.957
17534.749
18226.525
17365.45
17412.763
17472.592
18326.222
18275.972
19269.318
19232.278
20593.368
20614.487
19378.93
19183.039
20570.331
20772.178
13353.41
13155.537
13131.105
13289.286
13252.315
13115.309
13081.63
13273.543
13772.622
13966.818
14058.413
13856.29
13987.743
14037.743
13879.577
13802.249
14760.12
11333.031
11405.51
15790.77
15997.957
14963.449
11379.807
11354.229
14956.961
15976.966
15798.19
14780.674
14089.969
14005.291
13981.956
14074.816
13879.349
11156.056
11200.121
13774.46
14742.379
14501.123
15535.761
15778.132
11270.089
11164.484
14902.867
14552.01
15590.356
15935.879
13774.918
13942.663
13040.849
13029.444
12844.667
12833.611
13822.247
13729.797
13507.97
13602.646
13571.665
13652.262
13987.934
13911.565
12906.136
13185.896
13209.573
12890.134
13760.526
13472.19
13568.576
13834.788
13072.473
12775.186
12776.786
13116.659
12787.737
13064.594
13051.721
12795.532
13568.017
13456.999
13814.684
13919.517
11157.834
14458.822
14822.165
15862.88
15488.063
11266.419
11194.44
11126.062
14750.45
15809.411
15510.801
14463.003
13887.441
13738.816
13747.46
13922.182
11203.925
11175.293
13792.109
13859.387
14716.835
15761.139
15588.186
14548.067
14502.182
15537.565
16038.36
14992.979
11323.207
11179.128
13789.603
14025.619
13011.195
13014.402
12873.147
12863.146
13277.36
12860.348
12843.584
13303.357
13515.193
14000.167
14075.115
13604.199
13544.749
13711.721
13645.077
13804.739
29426.116
24533.05
29807.317
24572.448
28169.54
27924.024
28234.41
28845.458
29088.453
28488.084
28596.436
28682.601
29326.402
29217.332
29885.689
24633.543
28251.754
24815.615
28311.725
29875.428
28429.46
27946.476
27818.578
28306.287
28307.99
28351.5
28895.858
28865.603
29633.981
24466.752
29659.186
24662.063
28084.048
28015.715
29297.482
24367.14
27717.696
24426.775
27594.784
29123.275
29542.375
29525.615
30153.124
30171.653
28897.826
29003.556
29467.387
29546.008
30504.711
30456.11
31019.797
31127.927
29790.169
29734.571
30296.068
30296.855
30195.508
29526.856
29769.078
30422.732
29944.034
30658.806
30843.434
30075.719
32071.501
31709.703
31055.309
31314.828
30545.362
30744.673
31323.5
31179.448
28760.136
29365.134
29193.599
28626.872
24816.919
28334.957
30127.676
30202.385
24981.204
28455.589
24669.723
27949.801
29659.761
29572.363
24654.792
27975.308
28182.234
28231.064
28792.065
28714.408
28599.909
28677.87
29189.47
29303.319
24719.354
28332.074
29910.81
29924.993
24587.829
28284.132
24611.384
28311.099
29929.904
29851.217
24707.118
28273.175
28655.796
28613.312
29247.682
29297.286
30040.359
29890.506
30574.682
30784.417
31233.336
31570.948
31958.111
30940.823
31741.278
31762.525
31124.872
31076.035
30024.873
30737.91
30668.483
29958.076
30083.446
30523.906
30794.48
29866.199
29334.719
29922.147
30069.602
29436.671
30988.711
30692.941
30172.506
30382.744
31215.813
31908.94
31458.171
30865.172
15801.42
15962.489
16546.157
16729.065
15235.02
14531.503
14415.391
15093.372
20736.632
19354.035
17516.824
18389.52
29937.589
24886.797
31594.508
32334.104
32440.298
31607.696
33267.961
32730.609
32969.561
33640.227
34553.674
34906.292
34088.394
35473.869
35396.599
36102.191
36839.205
36009.286
37220.868
35347.053
36523.802
35970.922
35894.753
34954.388
34091.755
34874.664
35446.51
34961.238
35812.72
36436.267
36353.08
37132.245
37906.715
37003.946
31904.94
32772.006
32302.414
31520.995
32725.932
33327.616
34003.421
33270.222
32217.539
33122.781
33023.711
32236.332
33494.197
34078.827
34471.372
33723.728
12503.53
12250.361
34508.012
12234.091
32873.327
12486.051
12480.417
12228.965
32268.862
12237.98
33042.809
12490.126
40003.722
39785.846
37629.943
38025.083
39268.582
40066.544
41184.44
37986.692
41808.638
41723.812
42662.032
42628.931
43444.716
42813.301
41929.472
42806.764
43351.823
43769.248
44504.191
44324.578
43277.32
44321.605
43970.233
43100.47
44433.055
43178.097
43532.219
44263.011
43030.976
42223.162
41566.383
42541.467
41972.337
42858.401
42768.952
42065.724
43402.009
44360.875
43909.373
43135.439
12489.982
12480.073
12228.625
32211.673
12237.84
33320.101
38402.107
39673.148
40456.666
37565.733
40426.699
40173.745
33005.411
38148.57
33874.142
38595.987
12485.288
12233.334
12248.651
12501.816
39181.226
39335.224
12645.978
34673.761
12646.989
34532.08
37652.364
37947.957
39345.778
36890.665
39440.589
36763.979
39179.615
38992.633
37212.137
39466.733
36940.538
39455.179
12644.961
34310.566
12645.15
34680.858
38016.757
37785.194
37090.284
39440.853
39261.589
39323.251
36864.447
39421.105
36961.757
39372.779
36801.38
39113.214
38811.515
39185.414
12644.893
34169.103
12644.979
34392.537
37572.842
37927.567
12644.696
34665.447
12644.765
34498.907
38053.082
38039.195
33245.025
33994.718
34695.813
33812.573
35086.819
36065.39
34665.778
33885.855
35144.189
36732.432
35770.861
37493.319
34470.192
36025.526
35086.146
35302.463
32564.919
33403.284
33081.56
34104.004
32829.983
31965.572
31459.201
32175.897
31594.852
30901.838
31038.292
31806.697
31965.873
32299.807
32934.564
32475.224
33412.643
32642.256
32778.629
33154.753
32271.958
31474.909
31526.515
32250.387
32898.931
32082.901
32476.051
33396.233
33389.885
34047.165
34819.861
34007.932
34313.302
33951.301
34739.357
35220.634
35824.195
35214.655
35823.1
36541.049
37601.474
36345.477
38411.29
37039.413
34892.041
35774.079
36864.903
35824.92
12489.562
12479.688
12228.245
32141.872
12237.426
32827.576
38092.335
40260.152
39827.944
37623.533
40522.019
33169.09
38412.944
34312.585
39065.409
40973.293
12484.938
12232.989
12248.366
12501.528
12501.676
12485.009
12233.061
32110.629
12248.515
33540.957
38617.789
37518.047
39706.524
40674.999
32518.742
37684.689
31599.304
37109.319
39360.295
39779.147
12479.72
12228.277
12237.433
12489.57
44452.131
43466.923
43477.909
44584.723
42961.458
42122.192
41805.292
42795.242
42392.973
43280.027
43318.642
42640.557
43829.174
44774.962
44397.388
43666.419
41628.702
42424.666
43183.877
42560.293
44398.162
43592.431
43187.533
44237.062
43008.294
43020.437
43985.324
44134.444
41339.714
42323.954
42488.466
41637.902
39344.262
39467.962
12644.683
34782.464
12644.741
34652.797
38168.686
37914.893
39413.485
36759.131
39453.301
36795.966
39266.059
39109.579
37124.852
39555.294
36864.145
39518.404
12644.305
34406.021
12644.314
34738.772
37996.824
38185.595
37102.656
39526.266
39413.64
39660.006
37100.006
39708.095
37297.639
39753.305
37185.588
39455.228
39170.697
39581.728
12644.577
34430.581
12644.602
34691.012
38256.983
37837.15
12644.277
34908.407
12644.293
34610.875
38334.976
38207.434
32889.981
33832.152
33343.674
32520.854
32032.074
32629.624
32809.55
31790.41
33172.261
33240.212
33857.566
33787.148
34464.944
33805.798
34386.7
35226.006
36270.884
35256.849
36102.256
37314.024
38028.545
38805.197
37233.716
36616.959
35950.165
36371.596
37122.133
36568.082
34624.373
35450.093
35723.665
34782.271
34627.927
35556.569
34984.395
34207.406
34235.123
34867.695
33978.961
33513.844
34676.254
35467.99
35283.712
36180.266
35472.789
36208.601
36963.29
36089.367
31887.47
31965.14
31179.387
31175.618
31720.201
32454.25
32470.551
31650.781
33018.475
32869.45
33401.943
33711.685
32452.458
33089.88
32767.99
32263.818
12479.576
12237.299
33301.454
12228.134
32654.157
12489.435
12232.906
33110.489
12248.333
34425.323
12501.493
12484.855
38276.057
39191.436
41194.566
40437.337
37997.34
40206.111
40361.841
38340.773
12489.444
12479.594
12228.151
31700.618
12237.309
32577.157
37922.994
37269.544
39513.092
40096.08
33191.551
38137.693
32325.747
37710.803
39885.312
40146.515
12484.901
12232.952
12248.417
12501.58
41786.38
42698.166
42642.642
41894.063
42812.762
41963.34
41490.712
42474.772
44341.305
43168.338
43380.986
44280.002
43311.914
44337.339
43919.134
43085.72
42141.414
43095.135
43017.409
42184.076
43591.021
42891.827
42339.466
43260.607
43875.481
43994.581
44805.902
44914.045
43759.518
44848.628
44444.658
43540.717
36969.038
39592.549
39499.381
39038.742
36809.625
39248.86
39495.403
39662.196
36904.412
39663.921
37034.675
39592.095
12644.18
34957.159
12644.171
34814.873
38207.653
38415.68
12644.616
34488.124
12644.561
34655.781
38276.172
37756.747
37363.836
39951.548
37429.214
39768.185
39888.201
39554.959
12644.516
34924.299
12644.54
34680.669
38138.239
38535.662
39869.631
39445.677
12644.163
34781.262
12644.163
35064.874
38469.833
38121.556
37281.98
39900.811
37113.993
39590.539
32574.098
31938.851
32683.902
33477.755
31663.713
30973.552
31334.513
32113.578
33246.896
32559.224
32036.85
32605.822
34073.628
33076.867
33598.339
34798.889
35798.763
34405.623
35195.401
36798.72
36255.875
38215.001
37475.323
35668.864
34565.532
35638.19
36360.588
35184.893
33319.128
34078.094
35027.085
34133.331
34963.443
34714.18
35530.392
35895.069
36511.699
37228.547
36612.132
36013.01
36983.503
38207.065
39020.575
37675.968
35498.489
36406.396
37468.68
36422.768
32169.859
32030.605
32864.057
32941.993
33380.857
33356.674
33891.686
34033.528
35399.429
34562.85
33951.151
34617.955
32618.572
33460.121
33971.425
33015.822
12501.664
12233.126
32389.461
12248.5
33978.138
12485.08
12479.86
12228.413
31674.769
12237.684
32734.663
12489.826
37890.516
37194.14
39504.085
40039.152
38894.959
40966.695
39870.871
37679.104
41528.252
42545.815
42802.808
41927.701
43464.781
42720.722
41844.205
42829.396
43500.328
43908.489
44755.41
44594.693
43266.768
44408.27
44327.192
43370.824
42675.469
43568.408
43662.22
42973.415
43245.652
42380.168
42149.332
43181.164
44786.449
43877.021
43822.367
44971.806
44115.642
45048.165
44720.471
43994.908
12490.053
12229.11
32665.621
12237.909
33258.08
12480.563
12486.667
12234.7
33587.746
12251.425
34733.278
12504.629
38703.672
40837.657
41331.592
39452.771
38377.567
40544.612
40174.206
37957.184
34905.711
38136.614
39646.549
39822.696
12644.751
35071.548
12644.715
38468.654
39707.982
36982.99
39670.568
37032.879
39498.411
39418.421
37375.176
39776.254
37127.9
39791.891
12644.594
34666.942
12644.473
34999.198
38236.293
38440.291
37344.873
39767.21
39699.573
39973.972
37411.92
39973.679
37515.237
39906.269
39778.963
39422.623
37436.621
39687.73
34860.244
38386.596
12647.606
34764.963
12646.431
37956.046
12645.248
35174.31
12644.865
34834.678
38576.564
38381.344
13924.016
13925.68
17938.868
15447.961
17943.523
15451.102
13925.439
13923.949
17938.782
15447.886
17943.208
15450.833
13927.847
13925.123
17946.402
15453.549
17940.352
15449.207
13925.915
13924.556
17939.594
15448.568
17943.838
15451.363
13925.264
13923.614
17943.588
15450.641
17937.739
15447.516
13925.156
13923.586
17938.308
15447.484
17942.838
15450.52
13925.142
13923.543
17942.819
15450.505
17938.254
15447.437
13925.083
13923.526
17938.234
15447.418
17942.748
15450.439
13923.483
13925.127
17938.181
15447.37
17942.806
15450.489
13925.014
13923.443
17942.659
15450.363
17938.13
15447.326
13923.423
13925.006
17938.103
15447.304
17942.65
15450.355
13925.041
13923.434
17942.695
15450.394
17938.118
15447.316
13923.777
13925.495
17943.294
15450.9
17938.569
15447.697
13925.241
13923.701
17942.957
15450.615
17938.47
15447.613
13925.808
13924.631
17943.705
15451.246
17939.675
15448.649
13928.331
17946.901
15454.056
13925.519
17940.796
15449.633
13576.795
13632.824
13644.003
13587.884
13686.924
13752.891
13764.245
13698.6
13759.449
13778.347
13711.678
13692.98
13600.809
13657.44
13638.848
13582.35
13463.81
13317.513
13306.385
13452.439
13312.169
13330.317
13476.374
13458.297
13256.76
13275.133
12980.847
12998.16
13251.501
13262.5
12986.07
12975.407
13463.908
13452.66
13306.602
13317.609
12975.628
12986.166
13262.596
13251.719
13257.235
13276.266
12999.296
12981.321
13458.76
13312.632
13331.425
13477.469
13587.987
13644.101
13633.044
13577.008
13753.113
13764.344
13687.142
13698.697
13582.799
13601.838
13658.49
13639.299
13759.905
13779.42
13712.767
13693.44
16163.824
16179.386
22011.868
17817.056
17812.304
22004.479
17812.676
16158.779
22003.926
16169.17
22010.494
17817.096
16159.068
16169.285
22010.656
17817.231
17813.013
22004.331
16180.907
22013.988
16164.458
22005.377
17813.055
17818.812
14485.998
15607.059
15611.496
14489.828
14487.808
15609.698
15606.459
14485.015
13392.059
13394.41
12158.201
12156.261
13392.892
13396.53
12159.646
12156.629
15606.378
15609.923
14488.336
14485.343
13392.268
13395.121
12158.337
12156.046
13394.305
13391.788
12156.008
12158.104
15606.156
14484.726
14487.693
15609.577
15364.059
15364.955
15009.526
15008.618
18572.861
18573.981
15364.839
15125.057
19554.472
15127.011
19554.654
15364.982
15126.213
19552.829
15124.675
19553.958
15010.108
15009.958
18574.72
18574.532
15127.133
19554.825
15365.123
15365.19
15125.378
19554.904
15127.873
19554.997
15365.792
15365.762
15125.416
19554.952
15010.385
15010.356
18575.041
18575.075
15010.319
15010.25
18574.996
18574.908
13577.183
13633.217
13644.296
13588.174
13753.29
13764.544
13698.899
13687.32
13693.595
13712.848
13779.498
13760.055
13601.909
13658.562
13639.442
13582.936
13477.545
13458.91
13312.781
13331.497
13276.335
12999.364
12981.47
13257.382
13251.901
12975.805
12986.376
13262.805
13452.833
13464.107
13317.811
13306.777
13306.773
13317.811
13464.103
13452.825
13588.168
13644.286
13633.203
13577.165
13753.277
13764.534
13698.89
13687.307
13582.905
13658.505
13639.407
13601.848
16164.649
16180.99
22014.106
17818.911
17813.275
22005.64
2973.3896
3001.381
4707.5798
3390.8499
4802.8867
4314.7697
4362.1874
5310.0927
5178.7228
3009.6169
3031.8808
3388.6969
3401.2997
4812.1905
4805.8665
5148.7915
4280.53
4326.1832
5285.5463
4363.6873
5285.9326
5256.8755
4347.8301
3007.7449
3046.407
3471.3176
3418.8893
4813.5692
4920.7154
4379.0675
4364.489
5272.3878
5314.837
4439.2693
5321.0928
5462.7656
4492.9737
7030.1247
7301.4291
8949.5251
10711.701
5330.4822
10730.769
5047.4975
7151.1253
6927.6736
8123.4129
8670.6045
10976.155
5304.9197
11924.711
5918.3841
9030.5132
8448.1992
7130.5609
7204.9434
10639.372
5239.9388
10548.389
5216.9776
7068.6612
7137.5642
8377.57
8435.767
11505.57
6018.0591
10832.617
5389.8109
7216.3495
7519.6819
8548.6627
9328.514
36340.111
29055.144
28969.655
35228.659
34748.785
31194.11
30654.514
79334.839
69920.733
80355.387
79736.229
72298.792
77440.977
2988.9978
3003.6074
4757.7532
4800.8025
3407.9157
3375.6529
4362.8748
4378.3965
5290.8112
5263.6631
4273.826
4305.6332
5243.1229
5141.5157
3031.6047
2983.9182
3342.2051
4730.8362
4840.2084
3412.6289
4240.6421
4240.9403
5156.4134
5140.8353
4315.5354
5200.7515
5360.83
4375.3536
3449.0928
3423.9154
4830.0633
4877.9722
3037.4631
3071.8364
5214.534
4339.6224
4399.1071
5377.9221
4376.3844
5307.9216
5282.0059
4367.3093
3585.2618
3524.963
3064.8148
3105.559
4932.0708
5060.6735
4498.2207
4526.263
5483.9494
5420.2725
4594.9791
5493.115
5633.1028
4650.1373
10594.486
5055.3556
10564.931
5196.5814
6884.44
7065.4315
8114.2748
8499.7084
11168.841
5930.2354
10749.728
5275.7508
7217.1685
7133.8359
8965.9484
8423.5357
10370.535
4993.6827
10328.747
4947.9588
6857.7193
6881.6765
8084.0827
8010.8728
10382.418
5070.4316
10845.833
5650.7703
6957.3603
7271.1335
8130.3351
8927.408
28681.637
26745.111
32406.569
37005.37
27526.375
29323.886
30398.793
28926.495
10472.213
5507.8218
10308.903
5060.3793
7199.5363
6926.665
8123.6258
8851.1661
10430.514
5257.6453
10553.831
5596.1532
7051.2007
7116.7483
8687.0189
8393.9733
10518.925
5490.8364
10432.924
5372.8378
7199.7208
7302.248
8544.8839
8768.587
11797.811
6411.6798
10838.972
5695.5199
7748.9954
7420.9406
8876.7832
9743.1076
30014.277
33395.918
28213.019
29100.1
37632.938
27928.954
31924.924
35739.53
77448.053
68689.139
73621.507
76687.771
78396.009
77562.921
74988.556
67085.707
73175.645
77283.526
76130.404
65786.946
76648.451
73889.774
75830.845
72938.609
20348.039
17752.127
20347.942
17753.307
16706.982
23630.336
16706.748
23630.336
16706.965
23630.32
16706.736
23630.321
17753.369
20348.021
20347.928
17752.258
17752.846
17754.829
20347.91
20347.972
16707.337
23630.296
16707.608
23630.241
16707.196
23630.132
23630.134
16707.511
17754.772
20347.892
20347.798
17752.767
17752.171
20347.791
17753.281
20347.887
16706.573
23630.125
16706.81
23630.128
16706.582
23630.142
16706.818
23630.149
17751.962
20347.81
17753.218
20347.901
17752.502
17754.555
20347.989
20347.833
23630.176
16707.228
16707.579
23630.256
16707.445
23630.499
23630.483
16707.751
20348.121
17754.756
20348.203
17752.835
20348.408
17752.405
20348.243
17753.643
16707.088
23630.533
16706.912
23630.623
16707.444
23631.095
16707.12
23630.917
17752.929
17753.966
20348.676
20348.698
20351.234
17753.901
20349.315
17757.373
16708.32
23632.138
16710.141
23634.63
5801.7554
5886.9662
9525.713
9679.1657
9907.9926
9966.7548
7199.3407
5824.0321
5780.3042
7146.8908
5803.364
7140.4331
7373.4242
5940.7848
9560.9144
9859.6694
10247.378
9917.4038
7960.0144
8012.2707
8280.1008
7985.2317
8491.0078
6140.4389
8351.2481
6049.7514
7575.379
7457.6134
8268.4243
5979.2901
8129.3052
5921.015
7274.5823
7388.8011
6012.8554
9949.1684
10210.379
10242.65
10419.929
9765.2545
9867.1926
10202.805
10050.194
5949.1055
5780.8801
5794.5888
9427.9202
9714.98
9836.9183
10060.818
7230.4143
5823.9327
5724.8338
7076.7717
5643.3149
6944.7655
7188.9229
5791.7604
9290.0225
9604.265
10025.503
9676.3603
7715.3046
7996.2134
8052.9446
7873.4524
5829.3496
5941.3091
6057.6363
7520.1814
7194.0958
5871.3282
7196.0206
7199.2092
5836.2531
5817.5641
9557.5814
9619.287
9951.7346
9967.2679
9600.1
9941.7448
10415.939
10017.895
8009.5439
7998.622
8093.992
8468.5727
25829.119
13671.817
26239.047
14210.602
11364.006
11098.664
20144.578
19294.094
25838.144
14421.991
25763.146
13999.437
11248.151
11817.612
19784.11
20679.148
27359.598
15526.785
26727.056
14341.566
11796.394
12339.47
21778.543
20246.162
26551.08
14363.119
26348.383
14273.795
11510.224
20128.92
20381.303
11726.051
20850.137
20865.747
20850.63
20860.937
20861.027
20850.807
20850.356
20865.971
25813.223
13852.365
27014.447
14950.17
12202.322
11380.008
21206.396
19887.103
13769.985
11219.696
11131.277
19173.966
19777.38
13527.255
25753.142
25634.531
25859.067
13811.927
25101.617
13448.439
11274.656
10756.695
18991.536
19656.639
14302.618
10989.515
11485.535
20427.903
19184.704
13593.513
26516.728
25469.612
20850.498
20866.08
20850.969
20861.293
20850.889
20861.267
20866.033
20850.441
26528.738
26523.317
26521.078
26524.675
26524.817
26520.943
26522.78
26528.125
26523.182
26528.494
26521.158
26525.033
26521.639
26525.213
26529.139
26523.736
10159.102
9899.3004
10280.354
10483.711
7434.2789
7570.9701
6106.5329
6015.3748
7281.1796
5913.1521
8484.6946
8309.9169
8088.8865
8289.4854
11407.38
11868.219
14048.688
19841.251
20568.782
14406.967
25580.682
26059.743
26426.304
14249.232
26180.361
15639.925
12272.596
11774.446
20148.437
21743.365
20865.427
20849.685
20850.144
20860.542
26522.943
26528.399
26520.673
26524.13
3863.7789
3916.6076
3869.2547
3887.0323
4749.7997
4739.9048
5705.6326
5718.1093
4732.4892
5763.1689
5698.3475
4786.5273
4697.1015
4652.5739
5597.4832
5672.941
3801.2674
3844.0709
20757.776
19169.224
19403.182
20516.116
17581.175
17417.473
18275.215
18432.098
17380.214
17580.669
18448.814
18229.237
19363.593
19222.805
20569.16
20681.482
15861.717
16019.385
16790.469
16609.288
15286.243
14576.89
14461.376
15145.022
14446.097
15145.066
15316.779
14610.016
15874.108
16633.553
16803.347
16042.051
14726.289
15250.262
14549.219
15422.751
16734.889
15971.025
16141.708
16893.955
15931.446
15983.588
16750.26
16691.511
14536.38
15247.791
15208.988
14512.633
17538.269
18404.15
18327.434
17468.906
19357.247
20708.619
20630.187
19273.735
20846.194
20727.714
19348.064
19481.798
18386.288
17517.376
17670.57
18528.123
14475.911
15175.836
15248.881
14552.461
15902.308
16661.851
16714.768
15963.407
14474.467
14984.059
14296.842
15161.536
15682.318
15746.455
16509.815
16436.748
14311.647
15015.884
14967.078
14278.653
15694.174
15871.351
16616.598
16446.318
20494.085
19122.681
19008.701
20368.764
17295.522
18162.847
18063.316
17208.512
19044.967
19189.192
20554.023
20436.536
17387.111
17221.88
18082.811
18239.28
17483.448
17444.609
18305.182
18329.179
19257.681
20614.379
20589.682
19261.705
12994.726
12968.457
12980.086
13759.636
13688.16
13649.055
13743.024
13724.68
13667.694
14009.517
14076.546
12989.498
13020.608
13301.327
13317.633
11453.975
11382.369
15040.041
14854.256
15875.587
16086.36
14016.179
14099.929
11206.613
11210.497
15694.162
14667.85
14627.737
15659.684
13853.513
13831.153
11234.935
13849.251
14023.058
11350.439
14979.348
14629.114
15648.084
16020.89
13567.688
13590.741
13224.787
13254.433
13226.178
13245.195
13256.61
13212.552
13941.596
14019.543
13999.961
13901.941
13910.13
13981.141
14365.281
14288.117
14094.769
14034.56
13841.817
13934.11
13338.565
13347.371
13151.068
13163.854
13079.307
13093.305
13366.851
13403.808
13853.369
13762.586
14098.127
14198.478
11485.379
11377.22
15096.001
14749.652
15774.616
16142.219
11427.454
11389.679
16059.723
15011.942
14825.163
15877.217
14016.084
14111.149
13990.554
14151.848
11413.364
11419.777
15965.028
14929.621
14893.331
15929.252
14076.716
14064.646
11461.566
14099.103
14279.55
11579.894
15916.968
14886.051
15273.115
16313.997
29459.904
24575.002
29237.821
24569.41
27574.086
27705.518
24569.275
27785.299
24752.429
27891.424
29564.739
29530.08
28041.095
28168.797
28763.067
28595.849
27896.372
28385.201
28284.64
27775.461
29444.789
29868.226
30108.908
29247.319
28963.126
29501.255
29453.899
28882.276
29719.208
29713.201
30196.073
30266.669
30465.225
31108.517
30696.538
30148.689
29265.162
29399.642
29992.341
29845.216
30691.024
30118.82
30250.755
30768.95
31256.052
30662.125
31560.352
30870.058
29675.1
30315.717
30452.38
29760.493
29586.77
24713.84
29663.536
24691.185
27935.486
27872.322
28103.008
28196.436
28753.894
28642.562
29068.007
29010.882
28459.863
28484.893
29920.061
24850.148
28185.145
24933.505
28187.426
29889.6
24667.082
27891.653
29613.569
29301.87
24537.258
27684.106
28150.36
27944.18
28523.676
28720.669
28021.147
28102.139
28565.808
28672.686
24577.524
27826.578
29538.706
29503.769
24470.447
27761.823
24670.539
28146.996
29934.574
29757.322
24684.325
28027.865
28446.787
28317.47
28921.91
29054.178
29353.251
29222.59
29845.73
30020.548
30388.602
30153.736
30722.198
31036.634
30708.716
30790.34
31358.016
31387.876
29755.599
30433.646
30309.433
29617.189
29381.253
30005.272
29836.618
29187.841
30286.158
30783.635
30825.696
30165.211
5754.1011
4824.6102
4779.0895
5840.07
3899.6796
3943.6722
3936.2757
3992.8158
4819.6715
4876.7384
5859.6294
5796.1463
3833.7545
3900.1241
3839.4229
3845.4547
4699.8018
4697.2276
5654.9207
5643.6701
4697.5312
4768.574
5750.9917
5657.1647
14805.129
15369.583
14674.454
15493.313
16205.972
16088.049
16846.505
16952.792
16065.496
16086.465
16848.822
16823.462
14652.409
15352.931
15346.178
14657.968
15848.691
15929.343
16688.575
16592.044
15209.259
14514.262
14462.615
15138.555
14572.693
15266.09
15479.01
14777.406
15989.641
16743.632
16964.041
16203.522
17738.748
17519.822
18370.256
18588.246
17466.155
17357.802
18207.171
18327.399
19522.166
19311.264
20649.537
20844.208
20653.392
19281.745
19153.196
20523.028
17632.816
18497.094
18459.379
17599.029
19450.133
20808.859
20781.542
19409.63
19459.533
20852.269
20923.29
19542.192
17726.109
17627.236
18492.812
18583.673
15902.438
15765.055
16514.019
16661.871
14534.374
15083.408
14384.484
15237.558
14479.603
15176.867
15057.317
14375.843
16563.166
15803.307
15963.159
16721.283
15941.393
15816.147
16569.78
16709.213
16629.079
15870.105
16105.996
16864.049
15152.458
14456.71
15383.68
14685.53
14485.955
15199.36
15098.572
14403.784
20644.968
19128.357
19309.032
20468.524
17340.684
17497.477
18360.384
18189.332
17638.441
17403.857
18263.852
18488.403
19214.493
20576.435
20753.4
19423.943
17284.025
17446.24
18317.801
18142.296
19100.851
19286.153
20681.385
20496.137
19310.283
19165.001
20541.289
20657.913
17342.374
18205.899
18361.483
17502.149
13731.99
13712.688
13406.729
13466.322
13406.802
13422.111
13384.139
13419.808
14081.216
14149.53
14178.426
14097.615
14087.429
14135.795
14450.864
14396.99
13849.912
13964.097
14009.627
13916.83
13297.344
13265.661
13180.593
13163.446
13193.539
13194.223
13603.965
13549.503
14295.579
13874.24
13964.885
14389.008
11505.309
11631.318
15292.806
14860.922
15885.254
16339.034
11397.816
11387.469
14810.538
14919.652
15941.314
15837.348
14014.374
14057.974
14315.443
14111.136
11528.813
11547.736
16085.043
15061.818
16108.312
15079.464
14213.678
14195.252
11568.793
14228.904
14366.703
11664.494
15044.237
16052.204
16372.115
15356.363
11407.711
11307.152
15728.364
14693.288
16056.084
15006.698
11326.678
11290.096
15997.315
14940.007
14743.684
15795.471
13937.243
14026.774
13934.436
14081.572
13955.395
14015.791
13835.455
13747.791
13285.63
13252.877
13074.678
13076.743
13030.678
12997.905
13295.241
13266.363
13787.297
13691.007
14097.67
13994.332
13179.497
13182.392
13050.137
13064.354
13877.471
13746.176
13853.67
13965.277
13872.625
13802.939
14244.657
14324.179
13115.067
13144.866
13514.279
13545.548
11343.65
11363.85
14872.9
15911.162
15776.826
14741.537
14772.613
15229.532
16278.924
15798.969
11393.483
11536.093
14007.691
14226.604
14019.691
13955.73
29487.03
24644.922
29475.713
24765.506
27848.093
27821.549
24726.603
28192.1
24789.703
28234.062
29845.224
29934.483
28465.852
28547.192
29176.822
29037.826
28015.797
28506.07
28581.068
28061.812
29883.922
30326.254
30585.296
29693.988
29071.062
29597.468
29749.98
29176.822
30012.778
29796.121
30561.65
30274.427
30982.826
30611.982
31158.176
31667.28
29651.066
30275.923
30530.58
29886.521
30135.07
30799.845
30891.479
30163.794
31337.754
31160.405
32065.238
31771.09
30592.356
30832.939
31377.973
31197.386
29799.999
24856.994
30019.928
24916.742
28287.3
28124.075
28400.265
28594.367
29199.519
28987.255
28850.188
29437.261
29436.697
28817.595
30341.999
25072.227
30234.996
25099.867
28480.92
28546.452
31244.804
31084.421
31674.932
31946.845
29696.087
30343.793
30039.374
29397.074
30086.81
30799.709
30713.574
30039.005
30661.958
31229.288
30963.812
30361.219
28732.779
28740.468
29330.062
29356.155
24909.939
28418.111
30127.799
30174.59
24797.808
28417.534
24694.621
28115.056
29794.349
29517.952
24673.403
27888.406
28412.028
28158.297
28732.589
29005.925
28339.078
27975.624
27845.556
28472.301
24562.945
27626.938
29216.896
29384.489
24493.674
27753.221
24679.057
28055.592
29695.748
29468.594
24712.446
27907.414
28319.942
28150.934
28702.574
28879.749
28933.979
29079.185
29649.865
29511.381
29802.152
30385.451
30431.101
29901.702
30419.041
30260.201
30840.435
30956.513
29518.683
30130.545
29943.133
29327.606
6354.4005
7507.6964
7498.3197
6357.8363
7543.8657
6442.9946
6487.2278
7686.2378
6321.8981
7486.8485
7443.8255
6311.7937
6315.3938
6344.3309
7537.8779
7440.0753
8187.1904
8055.1862
8611.2049
8810.6514
8058.1458
8134.7982
8722.3691
8626.0933
10859.753
9473.0981
9327.834
10658.835
9553.6777
9324.9826
10653.049
10931.178
8114.1622
8144.2781
8722.335
8686.1303
9694.9876
9392.9608
10709.473
11073.278
9393.5113
9465.2991
10837.326
10730.728
8152.1511
8692.7049
8951.7006
8338.6473
6566.6569
7734.3389
7708.6969
6553.5593
6476.0684
6491.6898
7681.5453
7621.853
8327.9149
8255.1292
8938.3264
8815.9421
8336.9002
8393.0057
8896.544
8950.2905
9681.457
9552.6609
10916.878
11070.182
9612.9794
9711.3211
11095.872
10967.731
8267.6839
8140.7022
8876.6169
8686.7493
8128.3578
8101.4463
8638.0813
8696.4952
9411.4499
10750.731
11017.985
9626.9256
9355.8319
9452.7955
10690.091
10832.043
6336.566
7487.4028
7479.1898
6336.5358
6403.6942
6431.664
7620.1708
7525.0023
22821.293
22771.228
23791.679
23821.325
25755.093
24798.791
24788.14
25766.398
25149.009
24868.967
25848.922
26111.44
22845.678
23142.811
24155.875
23862.941
25012.606
24739.718
25701.244
25960.662
23748.447
24029.293
23016.006
22726.877
22639.699
23809.97
23636.038
22826.708
24613.639
24758.494
25675.053
25561.361
26563.49
26483.098
27224.907
27259.618
26649.207
26887.848
27637.129
27430.412
27886.831
28685.366
27911.483
28581.461
28313.876
29066.34
28974.524
28151.617
26733.103
26681.156
27428.615
27536.494
28856.037
28276.681
28103.656
29118.574
29247.544
28395.837
28543.376
29298.59
26821.988
27637.098
27842.223
27059.932
25215.727
25436.193
26405.649
26190.758
24441.73
23430.115
23197.056
24211.86
23092.9
24083.844
24084.466
23088.82
25059.124
26008.256
25983.348
25044.037
22925.752
23772.475
22741.616
23946.738
25958.381
24836.471
24979.717
25807.074
22955.661
23979.286
23840.822
22810.158
25763.51
24771.409
24940.098
25915.509
26876.264
26741.468
27566.763
27669.746
27720.123
26917.737
26772.416
27581.65
29269.756
28329.169
28444.779
29195.929
28325.949
28386.536
29192.597
29198.19
28151.363
27360.241
27957.641
27154.897
26933.506
26894.986
27625.49
27676.35
28279.626
28347.957
29089.387
29007.739
28855.887
28684.335
29497.922
29631.593
18688.251
18368.847
22017.395
22381.777
18373.034
18296.438
21940.509
21955.554
22942.914
22935.828
23937.105
23971.633
23392.161
24433.283
24103.685
23046.444
24909.916
17374.723
17567.311
25814.074
25683.228
24834.355
17591.462
17411.664
25392.228
26324.78
26048.513
25075.885
19839.274
19654.869
19574.542
19710.605
19550.231
17116.311
17351.511
19342.572
24838.366
24569.743
25537.4
25760.156
17475.941
17128.323
24616.138
24512.796
25439.642
25482.159
19322.147
19610.497
18222.41
21873.096
21514.129
17932.465
23909.176
22874.91
22522.755
23581.274
22558.501
23584.083
23750.13
22754.268
17996.181
18262.607
21787.443
21556.148
22788.155
22398.179
23430.426
23802.378
18041.702
17738.097
21245.082
21499.198
17817.589
18207.772
21804.203
21386.51
23260.918
22240.042
22469.051
23448.421
17040.369
24174.593
24317.623
25132.674
17407.185
25059.491
17375.949
17077.735
24711.994
25589.91
25302.563
24369.112
19556.911
19268.146
19195.628
19498.161
17301.58
17154.614
19341.499
19439.204
24463.923
25320.32
25380.624
24432.912
24569.257
25518.582
17102.238
25733.705
17597.544
24864.655
19323.642
19750.12
18059.335
21572.272
21426.934
17884.727
18431.345
17961.447
21563.311
21998.535
22563.645
22961.446
23957.808
23603.855
22420.905
22557.194
23465.224
23559.55
28306.911
26828.174
28943.881
27066.095
12410.032
12419.463
12603.193
12810.405
12799.725
12593.217
12598.938
12616.185
12822.958
12805.214
28974.649
27129.572
12414.942
27189.612
12430.403
28730.14
12799.741
12593.233
12603.204
12810.417
12598.973
12616.252
12823.026
12805.25
28746.02
26945.723
28589.618
27009.609
12430.47
12414.976
28350.045
26712.101
12410.043
26597.521
12419.471
27952.922
13026.494
13008.583
13246.355
13264.884
13013.829
13002.837
13251.351
13240.468
13509.909
13490.709
13586.531
13605.516
13485.029
13496.33
13591.813
13580.774
13251.345
13013.818
13002.819
13240.45
13008.546
13246.319
13264.819
13026.426
13605.455
13586.499
13490.673
13509.843
13496.324
13485.011
13580.755
13591.806
12615.314
12822.059
12804.706
12598.436
27279.435
12414.45
29204.741
29126.494
27364.5
12429.559
26956.426
12409.708
28617.13
28482.986
26924.396
12419.206
12592.887
12602.931
12810.138
12799.382
12593.079
12603.044
12799.579
12810.252
27204.913
12419.314
28991.707
29223.261
27176.724
12409.892
27204.59
12414.855
29206.268
28907.546
27163.417
12430.396
12598.844
12616.173
12822.946
12805.118
13013.66
13002.67
13240.297
13251.177
13496.15
13580.601
13591.629
13484.855
13605.446
13586.396
13490.572
13509.834
13008.447
13246.216
13264.806
13026.413
13025.498
13245.791
13263.855
13008.027
13002.469
13240.092
13251.067
13013.546
13591.524
13580.388
13484.644
13496.039
13508.846
13604.432
13585.949
13490.131
25094.298
25252.718
26074.252
26213.452
24263.483
23244.68
23065.016
24089.148
29399.239
28636.088
27160.108
27937.047
28764.354
27248.737
13571.752
13627.708
13638.623
13582.585
13681.686
13747.68
13758.767
13693.099
13458.357
13301.208
13447.249
13312.078
13246.31
13257.047
12980.693
12970.291
12980.542
13245.952
13256.892
12969.938
13311.921
13458.198
13446.891
13300.853
13471.444
13452.894
13306.785
13325.417
13251.367
13270.237
12993.351
12975.536
13582.415
13638.456
13627.348
13571.394
13747.316
13758.601
13692.935
13681.324
13577.085
13652.541
13633.507
13595.969
13754.01
13687.524
13706.69
13773.366
16175.641
16158.117
16152.293
16162.335
17809.545
17805.511
21995.085
22001.178
22006.846
17806.068
17813.05
21996.744
15602.948
15599.869
14478.884
14481.526
14485.173
15606.464
15600.934
14480.308
13387.626
13392.241
12155.767
12151.845
13386.374
12151.085
12152.897
13388.586
12152.734
13385.949
13388.409
12150.692
14481.339
15602.752
15599.396
14478.435
15599.88
14479.308
14482.984
15604.146
13386.682
12150.969
12153.862
13390.182
16151.84
16162.151
22000.917
17804.984
17809.328
21994.451
17810.449
17804.895
16157.107
21995.332
16173.354
22003.684
15360.987
15359.779
15004.512
15005.738
18569.404
18567.891
15358.672
15118.905
19546.589
15120.498
19546.306
15358.449
15123.045
19548.826
15119.44
19547.301
15003.698
15003.929
18567.151
18566.862
15120.295
19546.023
15358.216
15358.135
15118.41
19545.924
15118.335
19545.828
15120.638
19545.689
15358.488
15358.594
15003.208
15003.311
18566.239
18566.363
15003.384
15003.468
18566.452
18566.559
13446.513
13300.479
13311.49
13457.765
13471.286
13325.262
13306.488
13452.595
13251.071
13270.085
12975.246
12993.204
13245.579
12980.117
12969.572
13256.461
13753.703
13773.198
13687.219
13706.527
13652.374
13595.799
13576.781
13633.203
13626.967
13571.014
13581.984
13638.022
13746.931
13758.162
13692.497
13680.941
13692.485
13746.898
13758.151
13680.908
13638.012
13581.975
13570.982
13626.935
13633.13
13576.71
13595.657
13652.23
13753.63
13773.053
13706.379
13687.146
13457.754
13446.482
13300.447
13311.481
13256.452
13245.547
12969.54
12980.109
13269.933
13250.998
12993.053
12975.173
13452.523
13306.417
13325.114
13471.14
16151.337
16161.6
22000.16
17808.709
17804.421
21993.761
17804.383
16156.649
21994.704
16172.976
22003.166
17810.027
16156.745
16173.176
22003.439
21994.836
17804.493
17810.25
16161.609
22000.173
16151.379
21993.819
17804.47
17808.72
12152.297
13385.52
13387.932
12150.3
14480.827
15602.206
15598.901
14477.973
15599.431
14478.888
14482.637
15603.775
13386.292
12150.614
12153.567
13389.859
15599.528
15603.972
14482.822
14478.98
12153.726
13390.032
13386.378
12150.693
13385.558
13387.941
12152.307
12150.336
15598.945
14478.014
14480.837
15602.216
15358.304
15358.236
15002.959
15003.03
18565.921
18566.01
15357.674
15117.966
19545.343
15119.762
19545.325
15357.663
15120.47
19545.462
15117.991
19545.377
15002.919
15002.93
18565.871
18565.884
15119.75
19545.308
15357.648
15357.628
15117.922
19545.285
15117.893
19545.25
15120.271
19545.207
15358.106
15358.138
15002.833
15002.863
18565.803
18565.769
15002.885
15002.905
18565.828
18565.852
13595.618
13652.191
13633.046
13576.627
13570.87
13637.886
13626.822
13581.85
13758.023
13746.785
13692.358
13680.794
13773.013
13753.544
13687.06
13706.34
13471.101
13452.437
13306.332
13325.076
13269.897
12993.017
12975.088
13250.913
13245.432
13256.321
12979.979
12969.426
13446.368
13300.334
13311.353
13457.628
13471.195
13325.169
13306.379
13452.486
13300.351
13311.361
13457.636
13446.386
13245.45
13256.331
12969.443
12979.988
13250.96
13269.99
12993.108
12975.135
13626.842
13637.896
13581.86
13570.89
13576.675
13633.095
13652.287
13595.714
13773.11
13753.595
13687.11
13706.437
13758.033
13692.368
13680.813
13746.805
16161.43
16151.188
16156.539
16172.932
21994.553
22003.105
17809.977
17804.262
21993.558
17804.257
17808.518
21999.927
16151.211
16161.443
21999.945
21993.587
17804.281
17808.534
16173.042
22003.252
16156.599
21994.635
17804.328
17810.095
15599.382
14478.842
14482.689
15603.833
14480.683
15602.052
15598.777
14477.857
12152.177
13385.414
13387.799
12150.204
13386.249
12150.575
12153.61
13389.906
15598.757
14477.838
14480.671
15602.039
14482.595
15603.731
15599.325
14478.79
13386.201
13389.82
12153.534
12150.531
13385.397
12150.188
12152.168
13387.789
15117.843
19545.186
15358.087
15358.154
15120.323
19545.272
15357.498
15357.51
15117.802
19545.132
15119.599
19545.117
15002.771
15002.76
18565.677
18565.69
15002.88
15002.814
18565.744
18565.827
15117.789
19545.117
15120.229
19545.151
15358.033
15358.061
15002.762
15002.79
18565.714
18565.678
15357.489
15357.488
15002.751
15002.751
18565.665
18565.667
15117.782
19545.107
15119.588
19545.103
13595.814
13576.872
13633.293
13652.387
13627.129
13571.176
13582.256
13638.298
13692.775
13681.102
13747.095
13758.442
13773.21
13753.794
13687.308
13706.535
13471.291
13452.681
13306.572
13325.264
12975.322
12993.196
13270.082
13251.153
13245.732
13256.732
12980.383
12969.72
13446.672
13300.634
13311.763
13458.041
13458.278
13447.384
13301.351
13312
13256.971
12980.618
12970.441
13246.458
13252.798
13273.182
12996.255
12976.953
13454.307
13308.204
13328.35
13474.38
13571.836
13582.489
13638.532
13627.808
13758.68
13747.795
13681.814
13693.016
13709.64
13688.936
13755.402
13776.286
13578.399
13634.857
13655.388
13598.753
16156.829
16173.151
16151.557
16161.94
22000.626
21994.064
17804.67
17809.09
22003.403
17810.219
17804.582
21994.95
15599.12
14478.178
14481.142
15602.543
14482.791
15603.942
15599.606
14479.051
13386.443
13390.001
12153.697
12150.751
13385.712
12150.476
12152.568
13388.227
15601.664
14480.971
14486.221
15607.644
14481.426
15602.846
15600.036
14479.035
12152.809
13386.512
13388.492
12151.208
13388.227
12152.379
12156.571
13393.169
16152.485
16162.238
16158.926
16177.037
21997.82
17806.921
17814.454
22008.659
22001.042
17809.433
17805.709
21995.338
15002.996
18565.976
15358.273
15358.317
15003.04
18566.029
15357.864
15118.141
19545.578
15120.088
19545.757
15358.008
15120.431
19545.42
15118.063
19545.476
15003.264
15003.12
18566.31
18566.129
15120.388
19546.161
15358.333
15358.801
15119.059
19546.767
15120.099
19548.088
15360.362
15361.806
15124.023
19549.968
15005.037
18568.471
15006.436
18570.147
15004.042
15003.584
18567.267
18566.719
5869.0575
5983.7063
10101.047
10079.189
5914.2218
7258.9375
7532.0281
6070.9382
9747.9202
10096.988
10495.51
10091.422
8532.8921
8245.0189
5976.8706
5983.5038
5878.1643
7215.9063
7468.4981
6018.4151
7484.8126
6049.0902
5970.8032
7383.2706
9840.8555
10078.05
10241.6
10401.559
9680.249
9987.7675
10402.708
10032.538
8123.7687
8395.9053
8443.8792
8305.1789
5981.0263
6117.1789
6242.0525
6071.8593
7455.6761
7760.58
7383.9608
5997.2056
6017.0096
7455.8126
9915.4813
9904.7522
10321.58
10222.152
9991.0519
10363.857
10773.386
10341.94
8295.44
8348.8681
8446.7782
8763.2272
12415.263
21859.737
25961.31
14727.837
26651.763
14423.575
12066.783
11525.439
20373.15
21202.654
27235.784
14518.804
27444.568
15771.383
21850.781
12253.621
20490.161
11805.316
26529.55
14296.055
26769.78
14477.905
11779.075
11777.466
20866.575
20281.677
27667.012
15831.38
26783.52
14720.946
12051.108
12782.558
21114.501
22378.073
20841.596
20842.072
20852.397
20852.401
20842.033
20841.622
20857.28
26510.062
26513.883
26514.073
26510.508
26518.133
26512.635
5965.5357
5933.7899
9881.4754
9687.3406
10020.945
10307.063
9865.7386
10106.461
10389.505
10223.91
5987.5286
6067.7135
7504.6841
7400.9224
5873.0832
7222.2927
7398.4294
5975.4686
8446.748
8305.3598
8298.0373
8095.828
6044.697
5886.9337
5859.9706
5854.0645
7253.3014
7240.5025
10073.562
9657.6977
9705.9792
10063.147
10189.604
9764.8265
10145.138
10652.727
5932.79
6129.5179
7640.5246
7302.4169
8075.9108
8082.2505
8199.3471
8588.5808
5934.5038
7278.8138
7600.6892
6113.9935
7476.3521
6045.9939
5988.2199
7408.4387
9842.8695
10024.121
10251.878
10369.509
5997.2138
9720.1596
10130.074
10551.391
10094.09
6067.4637
8141.4638
8498.0753
8383.935
8266.1578
6435.4165
6276.7708
7707.1059
7996.5942
7554.928
6147.0386
6202.7185
7690.466
6117.3469
6272.4086
10192.257
10088.032
10586.422
10389.709
10310.968
10660.517
11036.814
10637.644
8567.6857
8454.2945
8691.6737
9014.5485
26325.212
14235.63
26267.839
14430.671
11472.558
11854.748
20127.424
20662.049
26589.868
15884.067
26823.919
14364.275
12301.826
11800.819
21952.251
20311.867
26274.608
14209.495
26025.997
13815.189
11443.49
11313.453
20281.39
19546.497
26006.664
14210.595
26019.961
15226.175
11536.584
12376.844
20221.008
21678.728
20841.983
20852.34
20857.236
20841.572
20841.538
20857.276
20852.396
20842.042
25488.285
14679.064
25954.621
13995.651
12126.578
11389.737
19885.179
21086.678
26373.374
14052.257
26407.627
14806.299
11613.313
11954.401
21180.203
19956.783
26469.759
14286.504
26341.821
14360.523
11861.819
12011.464
20732.131
20393.779
27885.065
16307.922
26868.345
14890.429
13130.162
12340.96
21392.973
22807.511
20857.578
20841.909
20842.401
20852.691
20853.014
20842.817
20859.765
20842.907
26512.551
26518.066
26513.979
26510.414
26513.741
26509.757
26511.752
26517.277
26517.509
26512.226
26510.436
26514.331
26514.932
26511.459
26514.187
26521.385
11000.4
10912.943
12075.549
12139.465
8225.9792
8205.647
8260.2522
8410.5757
12466.251
12123.969
10929.889
11257.528
14304.131
14561.069
18985.765
19292.265
11786.9
9454.1067
9308.8918
11537.485
9387.3596
11671.845
12017.154
9684.3432
14460.467
14844.223
19527.108
19162.47
17426.054
17954.109
18349.309
17653.788
19165.792
10046.583
18364.782
9774.8826
12496.58
12097.288
18257.053
9661.7013
18107.115
9583.0715
11926.893
11986.798
11480.807
11260.568
12409.538
12605.504
8501.3709
8453.2002
14995.398
15486.19
19700.577
20303.507
14806.243
14872.849
19592.302
11202.386
19549.011
11094.097
8346.0705
8441.095
12393.265
12257.142
11082.127
10824.573
11981.712
12236.839
8240.777
8157.9308
8138.9301
8288.822
12219.757
11852.782
10664.588
11018.454
14130.516
14604.926
18815.341
19362.197
11856.643
9514.8482
9203.3099
11405.47
9071.2657
11292.691
11616.348
9325.0019
14025.739
14422.974
19054.836
18671.231
16998.672
17652.316
18071.871
17234.1
10970.181
8237.0134
8249.2235
12129.462
12116.314
10938.334
8483.7215
8274.0304
12623.344
12078.324
10935.669
11417.111
9876.4045
12231.004
11717.919
9456.4582
11554.757
11670.622
9397.1584
9341.7663
14279.854
14440.598
18869.63
19044.097
14488.499
19142.55
19925.723
15105.173
17627.319
17460.901
17747.091
18877.005
15050.796
30689.959
15053.177
31280.648
25405.83
16109.626
24454.423
15629.963
32432.629
31989.329
15055.186
30973.856
15050.873
30529.713
24867.18
15822.941
25870.356
16491.413
31520.681
32178.502
15055.034
32616.33
15050.751
31868.198
25695.064
16571.837
27225.377
17401.366
33553.501
33202.275
15053.1
31949.749
15050.699
31318.514
25439.865
16260.994
32468.605
25732.481
32660.083
16468.566
15050.983
30492.303
15055.255
31903.449
26480.412
16924.3
24942.2
15854.894
33206.186
31493.319
30461.117
24831.314
15736.215
24251.752
15509.847
31092.156
31337.573
30289.572
15053.326
15050.898
15053.341
30659.652
15050.918
29889.207
24774.336
15774.814
23986.386
15204.991
30784.352
31449.306
31350.256
24258.224
15465.585
25623.746
16221.387
32245.039
31308.647
30396.288
15055.277
15050.984
15250.837
14787.482
19567.368
20073.164
12026.786
12420.549
9993.9659
9691.1528
11813.745
9499.6927
18990.905
18228.585
17797.377
18276.278
25024.204
15992.421
25881.795
16492.53
30979.57
32024.651
32426.742
30849.649
15052.815
15050.401
15050.481
31540.106
15054.836
31401.505
27041.812
17207.773
25455.265
16418.927
32735.281
33164.942
6518.0515
7694.1298
7716.6628
6531.5768
6642.4367
6676.1321
7905.9646
7796.0097
6530.8009
7727.8031
7699.7709
6526.9086
6513.8186
6543.257
7763.083
7667.1731
8426.4733
8298.795
8860.5553
9064.0781
8339.1312
8389.62
8988.269
8937.5614
9655.6146
9745.9127
11140.544
11007.02
9813.747
9590.1135
10936.839
11204.285
8361.662
8344.0997
8924.982
8965.2881
9957.918
9715.9046
11069.041
11354.998
9691.2318
9679.1753
11061.292
11054.741
8428.0728
8987.3416
9202.5464
8571.7362
8388.2866
8237.9941
8777.8945
8974.7566
8193.6722
8188.1818
8763.9971
8723.2193
9480.6277
10826.644
9729.2447
9507.902
10847.691
11124.426
7552.1951
6399.4368
6411.2595
7563.5206
6492.0335
7622.586
7731.275
6529.5799
29099.536
28259.932
28415.276
28987.889
26856.747
26837.153
27563.417
27534.938
26855.514
27046.596
27772.584
27593.496
28129.998
28215.403
28926.286
28773.341
24987.428
25186.606
26129.208
25930.938
24207.549
23196.746
23003.473
24006.232
22986.993
23988.234
24107.253
23128.429
24969.356
25917.517
25974.486
25055.538
23345.175
24213.591
23192.521
24351.093
26182.641
25205.766
25328.477
26285.131
25127.811
25131.87
26073.751
26074.64
23156.761
24151.241
24148.641
23139.372
26992.158
27724.301
27747.53
27000.002
28373.792
29077.137
29146.588
28414.404
29404.655
29364.739
28616.28
28668.677
27919.757
27135.927
27224.465
27988.846
23029.129
24031.398
23999.717
23016.12
25014.044
25970.506
25877.604
24950.985
23039.954
23936.013
22902.871
24050.192
24865.9
24948.377
25904.358
25814.961
22948.121
23956.767
23886.274
22874.678
24940.498
25031.762
25994.965
25930.678
29026.824
28278.677
28188.273
28942.659
26839.748
27596.764
27501.421
26744.467
28472.004
28418.838
29187.509
29300.75
26942.163
26909.189
27727.417
27719.968
26773.746
26902.604
27653.662
27485.122
28324.262
29060.762
28808.153
28115.857
21822.432
18073.044
21668.52
23820.057
22790.078
22656.995
23683.455
23802.986
22760.876
22971.123
23968.524
21780.075
18186.732
18453.008
22000.966
17610.328
17427.259
24757.383
25577.268
19586.899
19694.633
17273.756
17231.655
25640.999
24739.463
24627.561
25540.246
19458.467
19409.011
17219.487
19425.647
19705.987
17574.823
24858.619
24730.163
25660.016
25712.942
18768.256
22326.697
22044.596
18435.915
21885.159
21954.141
18396.051
18319.703
22929.826
23956.901
23909.722
22868.879
23024.048
24064.595
24278.442
23284.131
24050.616
23033.707
22778.212
23796.639
22063.889
18513.156
18228.337
21788.076
21726.958
18166.056
18431.488
21930.792
23748.418
22708.922
22900.377
23888.189
17691.18
17343.748
24769.676
24677.437
25574.984
25591.4
17619.023
17431.89
25806.732
24941.087
24718.177
25613.53
19583.042
19773.043
19512.7
19782.02
17535.749
17510.182
25758.571
24879.149
24843.538
25756.581
19695.287
19680.235
17494.1
19692.257
20003.599
17876.541
25932.006
25010.565
25157.046
25991.807
28288.353
26753.814
27872.517
26612.123
12414.204
12404.802
26801.073
12409.744
26876.133
12425.264
28181.597
28355.847
12593.601
12610.908
12817.539
12799.732
12587.853
12794.21
12804.862
12597.798
13020.863
13240.528
13259.093
13002.919
12997.159
13234.628
13245.488
13008.129
13490.3
13479.023
13574.666
13585.683
13503.954
13599.465
13580.436
13484.716
13008.121
12997.127
13234.596
13245.481
13585.674
13490.293
13478.99
13574.634
13580.365
13484.645
13599.324
13503.817
13002.85
13240.46
13258.96
13020.735
28306.337
26874.197
28410.806
26921.146
12404.772
12414.196
12597.791
12587.824
12794.18
12804.856
12817.414
12799.666
12593.536
12610.787
28769.333
27150.816
12409.681
27154.331
12425.147
28524.124
26900.838
12405.482
28477.272
28030.098
26681.165
12414.768
12588.543
12598.369
12805.441
12794.91
12588.208
12598.194
12794.57
12805.267
26808.037
12414.596
28280.036
28370.813
26752.47
12405.154
27118.991
12410.027
28954.645
28633.823
27004.557
12425.438
12593.887
12611.082
12817.713
12800.023
13008.54
12997.524
13234.999
13245.907
13490.728
13479.4
13575.046
13586.114
13504.128
13485.019
13599.637
13580.742
13003.213
13240.828
13259.268
13021.038
12997.869
13235.35
13246.082
13008.715
13479.757
13586.286
13575.405
13490.903
11090.424
9734.658
9666.162
11006.422
8554.3452
8414.7436
8957.4041
9215.8833
8410.106
8971.3246
8937.4998
8377.4243
9976.3846
9698.4745
11046.723
11383.27
7732.5136
7746.2185
6545.0749
6548.9213
7770.1905
6599.8316
6636.2365
7880.2144
6658.0528
7838.7283
7882.6022
6678.4166
6809.5251
6837.2571
8073.9881
7977.16
8533.8292
8490.4719
9066.2091
9138.764
8615.7226
9162.7081
9353.7012
8739.9806
10106.536
9898.2858
11259.055
11518.076
9868.1634
9820.5684
11203.946
11243.949
7609.0478
7610.7805
6427.8462
6436.6891
6565.9824
6605.6866
7842.3514
7715.9845
7686.5497
6510.9277
6504.82
7655.3714
6454.6904
7592.3915
7679.5594
6481.2275
8277.7285
8338.208
8908.4064
8848.3209
8333.5645
8218.7592
8777.9886
8962.0822
11092.37
10852.427
9502.6023
9703.9729
9557.6609
9661.5125
11050.132
10907.281
8249.1704
8265.1812
8861.8872
8855.1552
8514.2192
8344.4995
8914.4999
9174.6143
10986.969
9637.5235
9926.4608
11332.919
9615.0925
10999.83
10921.238
9574.5491
23513.95
24462.266
23438.26
24522.846
25513.334
25463.977
26450.064
26488.734
25369.221
25275.733
26220.825
26326.023
23282.161
24288.733
24380.231
23358.497
25051.489
25122.272
26076.232
26013.357
24136.514
23112.194
23025.09
24052.617
23017.224
24022.486
24307.556
23318.097
24993.708
25926.437
26162.285
25250.775
27034.964
26826.524
27540.743
27717.256
27012.549
26961.261
27743.008
27779.977
28321.889
28192.974
28918.37
28982.948
29250.562
28473.06
28461.312
29275.84
27144.11
27885.641
28035.737
27265.5
28545.786
29267.154
29479.404
28722.294
28962.353
29757.765
29726.291
28957.171
27450.876
27423.798
28234.708
28246.859
25245.655
25107.182
26091.231
26223.264
23115.415
24012.471
22993.908
24111
23219.797
24242.488
24101.167
23067.066
25973.392
25001.837
25081.197
26022.521
24956.977
24855.035
25786.489
25874.454
25945.317
24986.646
25154.294
26064.194
23997.775
22976.716
24204.596
23208.861
23008.523
23994.982
23885.317
22882.103
28760.635
28077.895
28083.228
28813.43
26694.193
26762.836
27457.711
27418.99
26948.585
26874.904
27633.335
27646.9
28318.422
29086.831
28957.744
28269.378
27067.098
27189.4
27992.521
27888.302
28639.182
28714.601
29516.71
29490.756
28324.901
28405.417
29187.128
29015.955
26920.126
27699.153
27672.607
26938.439
18983.776
22565.515
22331.39
18708.263
18562.883
22156.177
22131.036
18572.158
23127.823
24147.934
24196.528
23145.642
23322.634
24375.747
24544.638
23537.248
22794.661
23020.187
24024.355
23823.576
18501.928
22051.794
21808.999
18273.854
18238.036
21783.508
22119.784
18609.288
23068.537
22769.701
23780.277
24058.243
17441.982
17887.47
24935.538
24692.485
25555.571
25765.616
17503.932
17406.468
24750.003
24918.933
25791.188
25682.029
19599.982
19688.494
19983.43
19598.223
17661.541
17703.456
25937.058
25065.773
26075.033
25137.585
19893.081
19830.641
17657.438
19891.234
20122.575
17960.75
25343.802
26289.016
26322.216
25443.805
17610.611
17297.572
25719.699
24786.475
25671.019
24794.114
17558.795
17367.938
26078.629
25173.414
24909.795
25881.433
19585.225
19758.167
19497.031
19736.056
23217.236
24242.043
23948.359
22891.377
18555.882
22213.863
21896.165
18242.543
18177.568
21807.494
21945.292
18366.201
23841.798
22802.202
23899.999
22892.72
21771.881
18260.296
18070.52
21592.001
22734.906
22577.368
23588.233
23736.607
23788.985
22767.022
23083.795
24048.089
21798.649
18226.283
18623.568
22116.286
17335.271
17466.226
24632.943
25480.014
25385.559
24505.759
24685.444
24896.985
25700.664
17812.174
25589.256
17355.673
19535.342
19906.294
19596.065
19477.814
28417.715
26851.733
28165.876
26855.642
12414.431
12404.94
27169.267
12409.819
27178.128
12425.28
28804.216
29030.428
12593.679
12610.925
12817.556
12799.814
12587.996
12794.358
12805.105
12598.033
13020.881
13240.614
13259.111
13003.003
12997.31
13234.783
13245.745
13008.379
13490.565
13479.182
13585.952
13574.828
13503.972
13484.805
13580.527
13599.481
13008.592
13245.966
13235.383
12997.887
13004.351
13242.015
13261.83
13023.506
13506.789
13486.26
13602.367
13582.023
13490.792
13479.807
13575.472
13586.183
28579.935
27068.983
28803.204
27211.66
12405.457
12414.63
12598.237
12588.532
12794.914
12805.315
12594.936
12801.116
12820.098
12613.384
29246.233
27469.6
28956.671
27393.516
12427.659
12411.034
13503.776
13484.562
13580.282
13599.285
12997.02
13234.486
13245.359
13008.002
13020.694
13258.921
13240.378
13002.771
13478.879
13574.522
13585.549
13490.169
12593.458
12610.746
12799.587
12817.374
27334.286
12425.105
29072.45
29301.133
27333.114
12409.603
27073.183
12404.667
28747.118
28200.08
26853.374
12414.08
12587.718
12597.674
12804.738
12794.073
12804.744
12587.736
12597.681
12794.092
26654.629
12414.089
27868.849
28293.972
26763.339
12404.686
27037.69
12409.638
28701.664
28232.916
26906.451
12425.185
12593.496
12610.83
12817.46
12799.627
13008.01
12997.04
13234.508
13245.368
13490.178
13585.56
13574.542
13478.901
13484.608
13503.87
13599.379
13580.33
13002.813
13240.423
13259.012
13020.784
11284.433
11206.917
11244.186
11594.77
11325.283
11118.101
11324.23
11089.647
12111.407
11847.045
12844.479
13143.394
11852.786
12116.282
13168.076
12853.941
16133.009
14457.82
14097.26
15737.363
14408.128
14087.124
15704.686
16030.674
11944.261
12069.011
13104.242
12945.694
14699.349
14236.882
15886.866
16370.696
14189.12
14376.515
16019.162
15820.168
11985.144
12990.652
13418.183
12377.17
11672.07
11507.606
11516.884
11412.367
12302.027
12190.852
13342.811
13222.151
12256.412
12467.893
13273.15
13529.579
14626.955
14505.687
16187.459
16294.26
14543.61
14837.362
16550.103
16229.078
12264.97
12019.064
13313.678
13040.787
12082.882
11929.392
12953.01
13143.645
14291.399
15936.457
16226.194
14579.518
14182.623
14424.988
15835.514
16114.571
11296.19
11191.593
11483.774
11259.142
21873.752
25290.857
21866.02
25524.66
26138.853
25838.545
26908.343
26375.065
26738.695
27345.43
26799.927
26926.911
27523.984
27350.93
21920.992
25682.506
22205.536
25656.644
26232.046
26311.288
26680.307
26659.736
27199.704
27172.532
26094.965
26159.879
22060.902
25596.921
21804.352
25488.7
21671.063
25194.235
25606.534
25749.092
21853.054
25138.396
26282.231
26034.376
26479.941
26801.24
26915.705
27288.217
27288.514
26857.161
27735.883
27655.582
27632.479
27767.35
26840.499
27550.893
27298.071
27078.059
27561.1
27780.175
27996.039
27747.6
27937.249
27396.935
27370.709
28000.854
27554.351
27953.64
27316.2
28173.953
28406.476
28200.06
27889.315
28006.89
28115.779
28206.421
27923.985
27887.775
27429.394
27453.373
28006.234
28023.004
26879.279
22481.444
26273.111
22287.582
26177.156
26809.468
22139.328
25827.35
26379.055
26213.584
22155.136
25696.058
26916.481
27447.013
27214.413
26700.234
22027.054
25489.782
26225.378
21860.071
25577.266
26101
27631.425
27030.944
27014.193
27618.18
22086.19
25772.893
26394.675
26435.644
21937.927
25805.648
27491.618
26835.756
26705.016
27315.684
27895.47
28107.137
28223.892
27948.742
28227.723
28183.145
28214.847
28304.495
28325.555
28243.286
28118.329
28463.605
28186.033
27885.882
28095.687
28421.855
28581.862
28552.244
28645.248
28599.555
27944.834
27689.267
27635.785
27898.208
27524.887
27757.228
27904.994
27710.976
28433.97
28497.577
28611.411
28555.522
27555.349
21461.02
27265.352
21144.531
25205.571
25382.734
26837.577
21041.564
26923.815
21007.138
24870.275
24758.775
25387.685
25204.774
25698.332
25940.786
25904.583
26478.708
26420.675
25791.879
26014.276
26743.161
26537.557
25791.467
25447.44
25717.928
27283.27
27040.815
26581.485
26393.242
26421.641
26560.582
28074.485
27893.944
27526.29
27260.688
27371.332
26529.419
26630.453
27412.728
25824.96
25958.417
25861.456
25580.104
26288.087
26338.802
25224.958
25441.907
25274.749
24973.044
27158.179
27016.759
26771.092
20924.04
24703.712
24502.919
20620.012
26463.666
25765.268
25209.99
25099.234
25751.578
24789.765
25344.534
25226.783
24750.079
26288.693
20618.906
26445.38
20861.45
24324.145
24257.488
24892.986
24771.965
25347.1
25409.149
26016.476
20583.943
25846.55
20312.642
23885.392
23977.355
26221.401
20474.2
26550.147
20856.601
24421.837
24208.67
24949.144
24396.536
24395.414
24858.946
25972.174
25008.341
24858.18
25964.011
24616.298
24827.363
26462.495
26245.239
25460.177
25226.142
25296.536
25451.278
27227.407
27097.245
26786.567
26681.408
26157.301
26305.007
27111.495
26873.27
25102.602
24856.624
25401.439
25510.72
25599.984
26483.927
25516.464
26560.65
25297.431
25483.452
27342.1
27267.881
26159.93
20640.93
24099.216
24174.772
20509.298
26138.118
26695.659
21061.963
26366.527
20622.591
24291.035
24470.588
24819.461
24898.313
25403.208
25419.793
24731.986
24559.324
25350.975
25067.39
22463.624
16308.063
22456.848
16297.551
22457.864
16302.224
16318.162
22466.781
22457.92
16302.269
22466.907
16318.25
22456.861
16297.565
16308.071
22463.624
16301.583
22457.017
22465.308
16317.074
16297.129
22456.268
22463.174
16307.725
16307.868
22463.359
22456.599
16297.367
16302.111
22457.695
22466.779
16318.153
27134.999
27006.349
27744.901
27532.074
26460.439
25875.013
25883.387
26514.188
28183.3
27995.848
28053.998
28067.376
22466.407
16317.883
11096.611
8330.1056
8303.3668
12232.114
12288.51
11108.312
11100.57
8545.1477
8369.9146
12279.541
12708.328
11500.696
19510.076
19708.207
9678.9431
12024.531
12393.856
9994.5304
14905.846
15342.498
20178.374
19733.362
19255.081
18551.917
11441.9
11229.231
12432.234
12617.451
8499.6717
8446.398
8386.4607
8544.4865
12620.5
12241.257
11048.299
11406.313
9541.9814
11876.553
12177.472
9802.2382
12405.005
9971.0316
9684.2991
12012.527
14900.589
15352.112
19696.049
20217.116
14753.29
15101.732
19904.118
19544.716
18198.799
18851.606
19219.97
18465.503
11250.886
11322.885
12528.323
12411.647
8444.38
8475.8863
8546.4703
8727.1818
13000.02
12544.286
11368.978
11778.514
10256.476
9908.9608
12282.786
12707.368
12105.204
9748.3964
9752.0988
12066.364
14938.093
14990.248
19701.497
19745.173
15200.319
15701.514
20620.664
20043.938
18553.892
18484.28
18828.945
19746.246
27479.216
17419.384
34156.636
15046.999
31335.675
15044.575
31329.605
26774.1
16975.615
25891.255
16389.346
32692.177
33209.381
15044.649
31937.771
15048.957
31900.081
27475.458
33990.334
17386.529
26068.051
33295.874
16651.829
15044.564
31650.79
15046.989
31664.871
26349.448
16673.351
25744.071
16512.148
32875.195
32971.128
15048.996
32948.118
15044.669
31813.764
26610.274
16944.282
27982.561
17857.195
33236.05
34609.354
11436.627
8455.0168
8413.4708
12578.926
12394.675
11223.001
8314.242
8451.1688
11050.411
12208.118
12469.153
11291.911
14847.979
14697.478
19500.662
19671.903
14897.444
15368.744
20255.709
19685.316
9703.1262
9978.5207
12411.812
12029.316
9523.0889
11851.471
12036.616
9692.955
19190.151
18412.046
18476.013
18078.892
11669.541
11167.31
12320.198
12869.221
8638.3379
8432.6753
11086.011
12264.675
12258.868
11046.887
8344.2738
8350.1093
9511.8165
9439.1513
11706.801
11836.838
19492.147
14535.603
14690.955
19233.586
15337.749
14768.432
19546.31
20210.24
9625.691
10020.639
12432.343
11944.465
17783.082
18096.324
18108.746
19184.421
9548.7108
11851.564
12285.567
9903.6833
12258.457
9869.0571
9630.1237
11931.408
14767.892
15132.424
19500.268
11234.834
19901.666
11389.804
8463.4267
8502.0712
12551.485
12427.583
14675.609
15187.988
19960.807
11558.819
19419.797
11105.151
8647.3477
8463.9795
12273.23
12756.032
17854.785
18832.515
18702.095
18120.39
10545.064
10196.312
12623.089
13048.159
12262.88
9905.623
10002.982
12346.102
11425.04
11604.379
12797.745
12560.96
8584.1463
8649.315
8735.4079
8900.4538
13241.044
12829.432
11685.564
12050.846
15221.436
15123.424
19984.502
19829.506
15568.135
16077.409
21001.324
20426.755
18733.975
18553.774
19120.846
20135.503
15044.515
31121.771
15046.941
31598.987
25554.242
16256.031
26116.732
16645.819
32393.827
32666.426
15048.962
31550.942
15044.625
31774.798
27457.788
17388.136
25866.73
16601.774
33576.464
33161.511
15046.95
31186.022
15044.528
30894.963
25668.756
16240.491
24859.679
15911.252
32476.744
32270.225
15044.611
30820.48
15048.985
31127.299
25514.612
16237.592
27067.139
17247.525
32008.469
33256.878
15047.273
30752.431
15044.791
30775.218
26438.995
16876.232
25179.19
16030.221
31861.712
32880.799
15044.839
31287.554
15049.168
31332.97
25261.862
16234.59
26483.902
16823.999
32424.26
32394.186
15045.112
31924.657
15047.497
31476.31
26094.146
16639.684
25756.835
16662.946
32611.872
32679.483
15050.881
33108.146
15045.59
31847.705
28313.328
18239.529
26755.606
17195.889
33231.907
34816.817
21249.312
20932.476
22785.485
14052.378
23167.872
14178.683
14121.399
14483.88
23287.784
22964.804
21130.165
21461.664
24841.936
17782.095
25379.873
18152.316
25146.18
25394.069
22892.65
20196.24
19642.753
22292.848
19848.703
22451.111
23097.186
20521.593
24923.66
17912.081
25436.187
18322.181
25377.223
25190.578
25733.959
26335.399
26429.545
25828.266
28105.462
21573.466
27110.907
20689.198
24315.66
23418.071
26749.287
20520.298
26605.888
20382.67
23069.281
23216.461
22383.586
21748.849
23677.284
14439.676
24322.237
14699.983
26026.206
18610.567
26900.013
19239.534
26448.986
27077.291
25648.167
18381.5
25779.19
18466.995
26077.812
21588.3
26036.164
21587.261
14294.748
14429.519
23475.664
23483.381
21273.871
20727.154
22552.144
13941.76
23142.754
14264.209
13831.654
14220.555
22785.772
22434.58
20614.129
20971.77
24544.971
17573.79
25304.901
18165.083
24780.825
25129.948
22920.653
20282.181
19426.752
22041.014
19176.732
21796.143
22412.491
19782.502
24295.223
17413.452
24803
17814.303
24858.459
24659.299
25163.074
25710.403
26286.663
25419.041
20972.514
14081.72
14134.695
22782.637
22614.141
20806.805
14657.171
14064.946
23694.552
22933.723
21088.535
21850.3
21036.093
23614.448
22546.051
19900.43
22131.411
22369.921
19757.022
19553.344
24482.478
17626.196
24743.662
17827.106
24696.974
24869.354
24972.833
17913.04
25172.254
18675.068
25966.273
26001.57
25629.062
25364.496
25958.404
27094.528
13824.292
13824.331
35968.338
24839.671
35189.438
24162.518
16140.006
16139.955
13826.361
13824.387
35198.262
24316.305
36109.812
25141.205
16140.027
16140.173
13826.116
13824.22
36610.576
25524.309
37847.102
26702.28
16139.847
16139.811
13824.256
13824.192
36052.011
25031.634
16139.826
36265.863
16139.914
25246.692
13824.463
13826.35
37086.314
25845.68
35455.873
24514.107
16140.171
16140.13
13824.443
35164.138
24283.08
34671.321
23987.146
16140.093
16140.152
13824.399
13824.455
13824.415
35166.394
24313.216
34372.015
23594.163
16140.111
16140.165
13826.45
34666.496
23850.76
35887.453
24915.698
16140.283
16140.169
13824.5
26170.849
18886.204
25497.053
18344.901
25373.956
25851.901
23145.061
23907.536
21283.038
20456.509
22721.999
20033.609
27544.101
26715.851
26238.825
26637.666
35786.397
24694.213
36387.169
25253.611
13823.92
16139.551
16139.597
13823.954
13824.019
13825.991
37663.869
26344.861
36246.574
25248.223
16139.628
16139.771
11540.198
11539.356
11893.244
11620.957
11641.735
11482.312
11645.477
11415.257
12439.085
12183.353
13197.999
13480.933
12239.097
12443.433
13497.608
13257.257
14513.608
14787.349
16453.84
16161.325
14756.462
14460.377
16106.961
16400.989
12303.56
12337.314
13384.525
13329.365
15024.962
14687.863
16358.942
16709.458
14593.604
14671.045
16335.777
16247.997
12393.529
13419.126
13735.009
12686.254
12431.679
12160.525
13190.667
13490.358
12139.043
12076.035
13094.391
13202.32
14335.992
15988.829
14745.255
14450.294
16111.156
16403.122
11372.207
11338.182
11404.193
11652.698
27601.828
27615.562
27493.847
27726.626
27266.484
27664.307
27601.188
27115.8
27789.556
27702.591
27626.194
27733.187
26988.797
27479.561
27608.613
27136.299
26763.726
26744.831
27233.05
27286.41
26224.328
22230.785
25672.128
22068.476
25628.647
26206.616
22015.279
25581.218
26135.614
25939.759
22157.517
25466.772
26673.962
27189.595
26855.207
26392.908
22426.51
25860.835
26522.007
22244.767
25921.138
26411.091
27692.968
27094.906
26976.004
27554.751
26896.664
26739.136
27246.651
27406.518
22176.458
25661.872
26203.369
26361.06
22185.815
25797.935
27731.086
27668.066
27869.388
27905.256
27509.971
27650.227
27862.726
27726.344
28093.048
28142.6
28087.521
27962.915
28254.44
28241.265
28109.596
28117.884
22079.597
25598.851
26164.201
25869.707
22068.227
25368.972
26731.923
27291.124
26865.093
26360.002
22147.771
25637.65
26347.242
21981.793
25704.167
26207.457
26721.602
26703.209
27248.305
27244.321
21979.764
25553.763
26133.971
26171.193
21938.574
25598.824
26968.429
26797.829
27402.272
27613.166
27784.146
27623.988
27663.475
27768.693
27769.004
27749.441
27749.863
27756.097
28237.245
27902.841
28038.093
28386.554
27976.473
28239.701
28339.013
28013.246
27324.628
27815.396
27799.307
27263.068
27661.419
27807.536
27355.69
27170.403
24587.11
26682.922
20762.147
24599.311
25638.313
25075.53
25143.332
25746.21
25735.176
25155.552
25176.092
25679.985
24636.818
20858.436
26722.941
26893.913
21097.858
24723.336
26372.927
25314.486
27313.62
27018.171
26527.773
26486.376
25558.319
25747.554
25909.833
25774.222
27262.075
27292.941
26581.982
27380.402
27267.882
26558.279
25730.767
25845.304
25655.69
25469.23
27135.711
21403.513
24903.475
24822.525
21106.251
26941.903
24723.184
20972.184
24672.745
21029.452
26746.758
26763.602
25143.375
25683.869
25861.282
25257.971
25325.369
25906.836
25818.104
25323.525
25725.062
25223.744
25140.27
25692.832
24773.471
21153.561
26916.977
26703.03
20882.432
24621.177
24546.882
20804.636
26563.644
26688.817
21029.957
24572.892
25642.797
25062.955
25002.434
25488.955
26418.349
26482.866
25515.952
25739.188
25527.362
25239.932
26632.384
26512.168
25427.856
25743.98
25782.916
25570.023
27286.954
27330.253
27258.203
27099.419
26630.796
26682.454
25515.502
25754.758
25981.396
25792.095
27347.83
27458.564
26850.919
27614.778
27469.691
26809.822
25888.351
26049.685
25858.14
25578.134
22447.583
16290.762
22454.313
16301.236
16295.48
16311.494
22457.7
22448.655
22454.299
16301.226
22447.527
16290.723
22448.534
16295.396
16311.341
22457.483
16291.657
22448.807
22455.316
16301.98
16301.751
22455.025
22448.222
16291.226
16295.852
22449.175
22458.011
16311.726
16440.621
14762.505
14538.175
16209.627
12590.757
12277.071
13310.116
13655.448
12430.952
13497.154
13294.307
12269.139
14933.191
14550.746
16191.53
16583.19
11501.862
11627.235
11495.746
11780.335
11698.746
11761.201
12109.265
11862.974
12532.83
12498.644
13544.868
13561.874
12640.521
13665.243
13946.045
12902.214
15238.495
14941.98
16616.012
16913.349
14832.714
14834.794
16500.444
16494.953
11354.774
11429.736
11794.888
11465.591
11600.262
11442.65
11351.142
11530.49
12185.853
12383.113
13444.34
13196.441
12311.203
12114.345
13138.66
13358.983
16303.91
16084.335
14411.48
14639.098
14455.728
14741.915
16440.574
16126.308
12114.552
12226.657
13276.325
13130.593
12599.988
12238.948
13255.631
13650.352
16168.471
14519.275
14933.882
16585.356
14559.823
16215.715
16023.54
14385.548
22623.028
26194.6
26918.908
22512.394
26294.426
26772.389
27375.144
27514.932
28136.198
27994.306
27233.086
26944.706
27450.195
27761.403
22325.947
25833.427
26398.912
26674.478
22434.908
26082.156
27063.044
26915.657
27445.863
27624.505
26364.144
22197.117
25769.267
22140.921
25848.332
26469.064
22074.667
25585.346
26113.149
26144.553
22365.793
25673.354
26612.518
27089.056
27000.463
26564.448
27387.407
27527.09
27478.265
27280.514
27969.372
28175.13
28212.712
27988.018
27207.297
27442.767
27637.474
27385.444
28117.843
27904.01
28139.55
28322.216
27934.358
27882.705
28279.388
28280.558
27752.144
27903.537
28279.406
28150.657
28644.726
28741.494
28586.702
28482.393
28586.563
28740.385
28803.838
28632.504
27178.447
27250.601
27865.812
27785.213
22156.123
25536.013
26257.915
22045.837
25671.638
26059.583
22299.051
25916.209
26555.676
26619.042
22173.711
25967.658
27405.223
26820.553
26578.544
27093.644
26391.654
26473.323
26947.357
26829.741
27287.209
26760.124
26500.091
26928.981
26209.248
22043.747
25633.357
26047.584
22277.357
25560.798
22032.146
25418.124
25919.588
25971.087
21937.392
25444.939
27258.537
27311.88
27074.009
27524.353
27410.782
27246.04
27152.436
27358.645
27351.414
27762.518
27759.737
27282.46
27720.42
27932.518
27458.273
27235.473
28476.519
28375.245
28433.062
28576.905
28484.591
28289.004
28454.118
28659.284
27461.3
27897.757
28062.89
27538.227
27947.622
27979.545
27542.176
27579.467
27555.168
21669.206
25332.007
25239.592
21414.445
27346.143
26927.401
21205.81
25004.662
21243.142
24844.615
27058.385
25311.398
25828.116
26152.499
25544.209
25770.427
26379.354
26318.335
25787.451
25109.187
25066.044
25574.384
25686.567
26788.448
21125.682
24620.052
24577.608
20913.852
26637.913
26553.934
20863.186
24519.537
24731.869
21210.09
26819.683
25133.403
24988.352
25501.415
25595.484
26437.957
26595.307
25601.634
25540.81
25309.077
25325.213
26653.322
26624.876
25817.859
25621.707
25382.523
25679.331
27475.121
27413.469
27299.236
27218.498
26801.582
27003.415
25609.722
25862.586
26077.27
26259.559
27783.925
27527.826
27257.021
28062.537
27872.568
27182.851
26514.233
26350.022
26094.519
26351.509
26481.811
26600.773
25690.89
25873.698
25382.393
25639.423
26913.147
26821.541
25909.654
26167.615
26294.346
26143.571
27644.471
27611.144
27366.445
27171.307
25558.499
26096.686
26131.202
25492.738
27294.439
21294.455
25062.331
24908.273
20986.655
27015.984
26755.44
20872.152
24621.665
24585.324
21017.269
26772.319
25755.629
25152.495
25574.324
25035.868
24366.337
20857.353
26466.082
26353.275
20680.467
24289.164
24814.83
24799.374
25368.71
25326.864
25525.764
24978.856
25089.343
25524.933
24489.598
20864.307
26602.724
26886.557
21227.904
24678.5
26287.527
26338.664
25380.767
25147.85
25295.535
25469.432
25584.865
25491.442
26489.644
25165.983
26482.541
25360.599
27275.558
27178.238
27059.33
27064.468
22447.824
16290.94
22454.711
16301.529
16295.574
16311.514
22457.721
22448.786
22455.042
16301.787
22448.715
16291.603
22450.88
16297.136
22462.02
16314.58
16311.286
22457.409
22448.39
16295.293
16290.583
22447.334
22454.083
16301.072
16301.084
22454.104
22447.368
16290.609
16295.338
22448.455
22457.553
16311.389
17008.586
16899.596
16940.425
17561.115
17180.578
16800.173
17050.219
16661.8
21540.841
21138.826
22393.342
22775.711
21316.102
21827.516
23113.106
22594.162
25643.44
24412.184
23919.348
25194.364
24008.019
23673.194
24882.705
25145.39
21360.305
21564.3
22821.953
22622.026
24676.35
24121.96
25368.287
25815.927
23917.306
24081.661
25253.122
25149.785
21524.99
22803.547
23433.974
22178.016
17753.334
17434.189
17390.107
17269.833
22106.653
22013.544
23390.454
23320.625
22197.986
22650.832
23515.384
23964.979
24686.094
24658.325
25931.624
25907.066
24886.281
25305.239
26579.423
26213.463
21908.127
21540.268
23150.133
22798.814
21873.289
21511.103
22782.297
23170.105
24088.854
25317.794
25578.382
24401.455
24113.859
24498.725
25412.777
25774.007
17138.649
16944.678
17349.371
16988.022
24241.625
12545.114
24413.888
12542.946
13002.652
13004.959
14334.781
13643.659
13641.128
14331.988
13645.671
13641.52
14332.427
14336.55
24581.974
12543.643
24602.4
12546.467
13006.403
13003.009
13645.757
13641.555
14332.465
14336.641
13003.041
13006.484
24543.162
12546.546
24408.7
12543.674
24159.661
12542.959
13004.965
13002.664
24143.675
12545.12
13641.138
13643.667
14334.787
14331.996
15100.554
15097.456
16096.908
16099.859
15097.966
15102.081
16102.19
16098.084
17163.236
18796.633
17160.551
18800.606
17165.245
18802.195
18796.642
17161.242
15097.448
15100.548
16099.852
16096.902
18800.606
17160.545
17163.229
18796.622
18796.596
17161.199
17165.147
18802.089
15097.925
16098.04
16102.093
15101.985
13641.453
13645.291
14335.689
14331.909
13006.038
25159.307
12545.758
25028.086
12543.198
13002.93
24740.638
12542.648
13002.339
13004.701
24602.299
12544.864
13640.796
14331.634
14334.499
13643.39
24407.907
12546.466
13003.3
24445.822
12543.551
13006.79
14334.606
13640.978
13643.49
14331.83
24631.157
12544.954
13004.795
13002.508
24662.651
12542.807
14332.328
13641.845
13646.097
14336.555
15101.991
15097.822
16097.93
16102.096
16099.662
15100.364
15097.282
16096.725
18800.385
17160.357
17163.027
18796.414
17161.078
17165.146
18802.087
18796.456
16101.089
15101.061
16097.453
15097.376
15097.072
15100.251
16099.537
16096.497
17162.893
17160.11
18796.14
18800.23
17164.053
17160.566
18795.891
18800.873
27125.128
24417.967
27016.299
24180.934
12427.205
12426.926
26386.159
23838.568
26581.88
23908.12
12427.035
12426.401
12973.446
12972.728
13748.94
13749.311
12973.763
13749.676
13749.566
12973.681
14766.043
26065.118
25673.532
16029.393
16029.451
14765.598
26671.319
26649.745
14766.012
16028.805
16029.193
14766.365
27144.761
27149.501
26639.579
26298.825
26354.518
26098.884
25734.45
26752.517
14765.682
14766.21
16029.577
16029.55
25146.443
25508.824
14766.75
14766.731
16029.6
16029.625
26303.291
25988.338
26362.651
23756.362
12426.793
12427.488
23494.986
26180.993
13749.022
12973.195
12973.979
13749.469
12973.995
13749.909
13750.354
12974.394
25869.322
23330.966
25838.242
23398.583
12427.525
12427.508
12974.49
12974.137
13750.058
13750.459
25442.326
23127.641
25481.884
22971.495
12427.654
12427.279
25920.132
23268.235
25973.529
23472.197
12427.618
12427.644
13749.647
12974.153
12973.761
13749.218
25170.98
14766.405
14765.897
24924.578
16029.779
16029.787
25481.976
25592.323
14766.866
16029.746
16029.771
14766.896
26237.765
26357.621
25971.472
25701.222
25095.569
25561.578
26244.542
25840.393
14765.888
16029.77
16029.752
14766.376
14766.858
25809.974
16029.735
25430.604
16029.643
14766.776
26547.659
26164.371
25622.425
23240.242
12427.276
12427.628
23218.629
25731.143
26039.679
23619.844
26013.505
23333.613
12427.612
12427.231
12974.109
12974.033
13750.382
13750.028
12974.125
12973.758
13749.624
13749.215
13641.533
13645.847
14331.997
14336.293
13006.55
12546.236
12543.267
13003.003
18801.77
17164.845
15101.717
16101.806
21579.951
14292.549
14289.545
23509.314
23274.176
21378.095
21713.875
14756.779
14315.022
23567.066
23977.616
22129.006
25862.865
25984.423
20827.585
23515.906
24236.974
21574.167
26107.971
18546.136
26719.057
19019.081
26338.255
26063.735
27899.695
27203.627
22189.407
21666.802
23506.416
14442.266
24028.093
14692.188
14278.668
14666.884
23709.943
23401.446
21529.336
21853.397
20507.407
23234.862
23808.197
21088.773
24298.465
21559.397
20727.704
23469.106
26078.876
18533.363
26817.272
19076.706
26096.41
26472.2
25859.629
18373.188
26323.87
18734.026
26073.145
25928.678
26942.878
27429.544
28029.645
27192.69
21727.351
21690.994
23535.453
14544.343
23586.093
14474.774
14600.145
15071.052
24464.153
23932.921
22048.597
22592.511
22023.354
21122.762
23809.891
24670.742
23550.496
20821.15
20684.012
23369.219
25904.349
18512.241
26073.151
18596.984
25980.782
25984.565
26364.351
18843.636
27143.122
19428.476
26865.152
26378.179
27120.485
26928.562
27462.487
28383.26
38062.112
26564.732
16133.941
13818.711
13818.671
37594.099
26196.052
36701.33
25365.148
16133.468
16133.522
13818.762
13820.727
38236.028
16133.667
26806.992
36928.447
16133.536
25706.136
13818.658
13818.702
37011.128
25736.832
36650.017
25581.604
16133.511
16133.452
13820.675
13818.738
37354.251
26042.909
38750.977
27249.202
16133.503
16133.594
22246.816
14652.781
14416.317
24145.936
23553.517
21656.201
14232.602
14510.304
21467.658
23349.697
23511.443
21589.368
25923.05
18482.269
25674.797
18305.642
25743.605
25653.645
26047.567
18533.788
26901.595
19135.9
26718.712
26106.752
20702.153
21564.526
24301.678
23440.079
20362.885
23074.754
23432.422
20722.9
28050.647
27161.828
26953.569
26666.483
22141.499
21501.817
23360.464
14339.046
23975.116
14919.832
21448.318
23297.23
14317.065
23064.715
14265.72
21214.478
20348.227
19999.033
22695.433
23052.064
18279.748
25730.072
25242.986
18031.755
25603.55
25462.046
26388.406
18956.537
25559.179
18313.813
25618.607
26081.658
20359.216
21367.659
23971.796
23025.997
26185.94
26562.388
26489.528
27459.184
20122.172
22821.352
23684.004
20994.637
23644.416
20947.999
20301.269
23006.302
25532.992
18297.605
26065.122
18715.44
25734.081
21491.868
25949.224
21887.082
14436.77
14615.916
23731.914
23336.778
25371.29
18198.16
26107.228
18752.64
25972.74
21934.381
25646.038
21419.998
14804.933
14303.84
23284.207
23790.925
26344.832
27105.894
27101.027
26508.605
22402.637
21432.831
24116.091
25063.418
23496.441
20784.489
20904.028
23568.429
21847.871
22016.367
23887.436
14828.668
23726.517
14633.191
14906.732
15328.78
24921.253
24388.335
22473.444
23015.047
26031.547
18771.912
25930.059
18671.628
26218.107
26012.186
26606.544
19207.573
27502.095
19829.041
27325.524
26735.909
27026.636
26956.237
27672.32
28729.885
13818.594
13818.638
36204.114
25087.596
36674.389
25580.967
16133.354
16133.413
13820.633
13818.681
38131.007
26769.41
36747.122
25651.653
16133.533
16133.416
13818.645
13818.606
36292.923
25088.746
35775.4
24709.721
16133.421
16133.312
13818.662
13820.652
36181.914
25025.615
37722.455
26413.406
16133.328
16133.546
13819.006
13818.839
37370.411
26124.655
36060.964
24904.809
16133.633
16133.797
13818.907
13820.853
36150.023
25195.002
36988.221
25914.703
16133.78
16133.673
13819.131
13819.203
36913.032
25698.973
36727.233
25890.65
16134.018
16133.971
13822.608
13819.574
39168.593
27757.754
37626.213
26390.73
16134.452
16135.968
26524.498
26155.227
26870.294
25027.998
27370.805
25531.51
25134.425
25469.942
27064.291
26945.479
26297.637
26396.759
28218.158
23184.263
28296.006
23135.196
12412.729
12419.59
27651.316
27416.813
26837.449
27194.18
26919.432
27173.602
27484.656
27411.157
28230.776
23366.839
28205.845
23518.905
12419.642
12412.741
12683.145
12685.679
12685.73
12683.157
12685.359
29088.342
12682.941
28166.188
29227.623
28420.634
12685.594
27844.945
12683.021
27678.583
27939.278
28085.103
28345.095
27618.081
28432.681
26065.001
29201.123
26772.73
29441.383
24409.841
30159.085
25087.647
12412.496
12419.156
29000.151
24072.394
29073.39
24119.899
12419.502
27251.827
12412.598
27188.642
25826.297
25843.842
28019.92
27937.229
26207.511
25812.573
26524.278
24754.669
26978.336
25414.719
24582.322
24946.217
26597.327
26442.256
25792.228
25919.417
27940.952
22901.646
28075.823
23021.945
12412.876
12419.737
27497.321
27330.026
26541.099
26901.699
26364.507
26737.135
27136.59
26940.502
27905.124
22855.744
27951.819
23035.471
12419.742
12412.875
12683.292
12685.83
12685.829
12683.294
25973.911
24738.99
25012.425
26693.668
26404.79
25753.468
25896.431
25134.995
27740.578
27056.623
26300.181
27044.761
28267.423
28330.394
27481.583
27280.534
26850.161
27028.247
26832.829
26620.477
27680.261
22857.212
27843.546
23045.638
12412.87
12419.736
28199.368
23307.952
12412.854
24196.833
12419.667
29044.411
12685.823
12683.285
12683.268
12685.755
20208.283
15756.571
20207.945
15754.484
20207.962
15754.498
20208.353
15756.629
20207.668
15754.247
20207.889
15756.216
20207.771
15754.339
20208.161
15756.468
20208.363
15756.653
20208.109
15754.626
20208.483
15756.739
20208.136
15754.647
20208.497
15756.749
20208.155
15754.658
20208.156
15754.66
20208.497
15756.748
28675.784
23715.61
28284.364
23231.565
12412.509
12419.43
28008.985
28481.17
28541.16
27908.67
27629.267
27428.824
12685.484
12682.912
12682.894
12685.426
20207.475
15754.147
20207.807
15756.23
20207.886
15756.295
20207.499
15754.167
17424.268
17454.387
18007.108
17538.616
17647.445
17353.413
17565.66
17187.556
22192.917
21819.456
23090.925
23436.893
21968.22
22356.431
23613.605
23233.504
24529.83
24872.69
26047.256
25760.318
24681.992
24389.484
25621.683
25837.582
22056.169
22119.939
23391.743
23324.158
25180.937
24802.454
26023.619
26314.113
24617.843
24668.511
25858.222
25836.205
22220.411
23496.707
23945.593
22700.18
22315.027
21936.603
23207.344
23551.206
21981.136
21785.146
23056.893
24380.523
25670.634
24806.19
24509.857
25757.949
25996.658
17252.119
17186.024
17257.385
17661.269
18794.594
17154.348
17158.392
18788.994
15094.584
15091.507
16090.501
16093.427
15092.035
15096.185
16095.837
16091.693
17156.301
17153.644
18788.972
18792.919
13636.713
13640.95
14331.1
14326.889
13001.92
24624.502
12541.796
24579.993
12538.887
12998.442
24533.302
12538.148
12997.656
12999.947
24471.865
12540.303
13635.853
14326.401
14329.174
13638.369
24786.468
12541.67
12997.989
24814.759
12538.824
13001.406
14326.813
13636.22
13640.393
14330.959
13635.821
13638.355
14329.162
14326.368
24611.492
12540.291
12999.936
12997.628
24718.548
12538.123
15094.574
16093.417
16090.463
15091.474
17156.29
18792.907
18788.925
17153.604
18794.412
18788.892
17154.257
17158.226
16091.607
15091.957
15096.039
16095.681
24548.993
12538.835
12998.368
13000.541
24370.292
12540.877
13636.599
14327.185
14329.825
13638.99
24579.378
12541.978
12998.746
24583.676
12539.183
13002.108
13636.246
13638.802
14329.632
14326.814
24479.149
12540.701
13000.362
12998.033
24536.108
12538.514
13637.032
13641.147
14331.306
14327.224
18793.515
17156.849
17154.134
18789.508
15095.068
16093.944
16090.963
15091.943
17154.748
17158.633
18794.858
18789.431
15096.402
15092.388
16092.069
16096.066
15095.27
15092.334
16091.382
16094.156
17154.583
18789.998
18793.762
17157.076
12422.152
26333.563
23634.206
12422.802
13744.348
12968.347
12969.083
13744.739
13745.113
12969.424
12969.715
13745.446
12423.072
23691.776
26295.652
26297.026
23845.668
12422.989
25433.555
16024.41
26284.062
25940.257
25721.587
26015.368
16024.19
14760.713
14761.181
16024.155
26212.413
26530.182
25890.961
26483.538
26288.215
25676.277
14761.524
14761.629
16024.097
16023.981
26359.927
24012.858
12422.056
12422.091
23852.094
26402.448
12422.419
23764.458
12422.377
23767.274
26146.016
26229.249
12968.694
13743.897
13744.311
12968.681
12968.279
13744.715
13745.103
12968.622
13745.239
12969.518
12969.105
13744.775
12422.799
23896.939
26288.53
26243.77
23688.919
12422.768
12422.756
23604.147
26118.205
26048.773
23703.846
12422.388
13744.337
12969.091
12968.706
13743.91
25485.49
25780.093
14760.241
14760.748
16023.684
16023.677
25585.009
25810.82
16023.743
14761.303
14761.267
16023.705
26421.3
26201.014
26358.874
26060.557
25746.697
26044.897
16023.662
14760.227
14760.719
16023.653
26276.953
26566.008
26122.752
26638.6
26323.343
25763.874
16023.63
14761.201
14761.155
16023.581
25934.946
24761.565
24493.981
25706.505
22372.921
21857.842
23117.637
23617.192
22239.129
23492.021
23203.394
21932.74
24851.657
24401.715
25616.092
25985.306
17332.972
17554.326
17222.005
17716.169
17590.592
17751.434
18305.341
17872.646
22384.676
22302.369
23580.886
23652.173
22604.177
23880.426
24334.387
23078.917
25575.549
25182.831
26412.004
26723.51
24941.871
24859.944
26042.291
26145.901
17129.924
17248.741
17826.734
17255.378
17653.369
17345.551
17176.847
17431.543
22017.661
22458.823
23751.548
23317.166
22112.152
21866.925
23168.429
23385.032
25893.664
25795.072
24505.819
24673.133
24667.443
25070.898
26333.169
25982.277
21680.458
21912.376
23173.292
22945.377
22450.83
21882.509
23162.279
23690.824
25697.698
24464.699
24924.961
26056.548
24432.326
25599.424
25456.582
24236.019
25087.085
12543.84
12999.135
25171.283
12539.905
13003.692
13642.832
13637.45
14328.137
14333.568
13636.432
13638.746
14329.584
14327.028
24774.821
12540.63
13000.298
12998.193
24985.06
12538.651
13636.336
13640.513
14331.09
14326.943
13001.518
24686.913
12541.776
24754.75
12538.92
12998.096
24549.574
12538.238
12997.754
13000.124
24686.413
12540.464
13635.963
14326.523
14329.387
13638.562
15094.819
15091.644
16090.654
16093.687
15096.181
15092.099
16091.768
16095.838
17156.588
17153.815
18789.166
18793.243
18794.608
17158.399
17154.437
18789.097
15095.029
16093.914
16091.249
15092.189
17156.834
18793.516
18789.894
17154.465
17155.963
18790.808
18798.128
17161.544
15098.839
15093.384
16093.168
16098.727
13640.335
13636.114
14326.705
14330.9
24524.943
12540.158
12997.5
24601.378
12537.998
12999.8
24797.48
12541.615
13001.35
12997.887
24840.77
12538.723
14326.231
13635.691
13638.216
14329.018
13638.228
13635.708
14326.251
14329.032
14326.74
13636.147
13640.411
14330.983
12997.918
24569.33
12538.752
13001.42
24579.375
12541.681
24420.648
12540.169
12999.813
12997.517
24416.671
12538.013
18792.742
17153.474
17156.139
18788.789
15091.353
15094.438
16093.275
16090.34
15096.068
15091.884
16091.536
16095.717
17154.187
18788.822
18794.467
17158.271
15091.845
15095.979
16095.619
16091.493
17154.14
17158.164
18794.349
18788.769
17156.12
17153.448
18788.76
18792.724
15091.332
16090.317
16093.257
15094.424
26826.73
24400.504
12424.482
12423.033
24273.721
26805.361
26284.549
23927.106
12422.539
24036.751
12422.027
26457.199
12968.211
13744.203
13744.797
12968.75
12969.267
13745.768
13747.44
12971.215
12969.119
12969.478
13745.193
13744.788
26084.944
23682.805
12422.766
12422.786
23612.022
26096.872
26092.685
23602.397
12422.813
12422.191
23860.522
26115.008
12968.442
12969.148
13744.398
13744.039
25605.895
25600.541
14760.383
14760.814
16023.76
16023.837
25651.875
25977.598
14761.28
14761.253
16023.69
16023.721
26738.413
26430.158
26300.993
26366.916
25867.802
26301.223
16024.028
14760.558
16024.239
14761.25
26850.957
26499.572
26649.576
27147.783
26765.222
26288.295
14762.342
16024.884
16026.318
14763.671
25484.906
25794.229
16023.481
14760.561
16023.48
14760.059
25952.843
26278.026
16023.501
14761.08
14761.066
16023.486
26833.924
26486.088
26387.219
26086.746
12968.939
13745.032
13744.59
12968.933
26805.657
24174.867
12422.304
12422.607
23941.215
26670.656
26342.431
23628.481
12422.603
12422.24
23660.074
26173.943
13744.164
12968.929
13743.742
12968.55
12421.93
23509.483
25859.058
25834.792
23290.115
12421.984
12968.168
12968.166
13744.173
13743.747
13744.612
12968.183
12968.993
13745.09
12422
23525.632
26109.109
26170.03
23868.561
12422.355
25567.683
25412.641
14760.066
16023.489
16023.494
14760.572
14761.091
14761.144
25392.334
16023.573
25637.53
16023.515
26382.316
26164.552
26030.918
26228.895
27237.964
20337.376
26896.302
20162.234
27372.17
20316.785
28110.913
20966.254
27663.453
20587.628
27002.645
20112.575
27115.23
20328.809
26753.591
19946.738
25089.055
24836.997
24953.459
25091.391
25163.654
25574.97
25676.679
25341.188
26016.799
25963.537
25685.73
25760.68
25292.735
25241.343
25279.965
25280.498
25037.039
25205.59
25254.224
25178.341
26063.933
25863.596
25868.224
25966.372
25480.245
25481.006
25474.02
25529.267
25367.933
25525.345
25900.918
25873.855
29187.123
21406.856
28477.093
20972.518
28226.906
20873.308
28166.824
20782.123
26124.274
26115.544
26160.379
26239.608
26489.844
26893.391
26650.641
26963.814
26387.331
26540.681
26561.897
26371.244
26987.543
27232.168
27215.508
27025.816
25548.893
20691.652
25296.941
20335.678
25552.629
25387.153
25869.674
20623.364
25463.833
20303.48
25611.059
25971.641
25671.826
25723.175
25802.689
25775.994
25948.073
26264.107
26038.881
26317.465
27876.229
27315.625
27655.078
27313.598
16243.615
16241.465
16242.151
16244.927
16245.028
16242.19
16241.486
16243.622
16244.027
16241.576
16241.084
16243.291
16244.92
16242.028
16243.405
16241.286
21107.134
15931.242
21107.603
15931.59
21107.886
15931.826
21107.81
15931.772
17856.292
17856.36
17855.625
17856.07
21685.168
21685.722
21685.99
21686.078
21686.212
17856.501
17856.472
21686.249
17856.559
17856.528
21686.283
21686.327
21108.008
15931.927
15931.948
21108.042
21108.068
15931.973
21108.102
15931.995
21108.302
15932.145
21108.317
15932.159
21108.3
15932.147
21108.257
15932.114
17856.731
17856.723
17856.688
17856.715
21686.477
21686.507
21686.523
21686.515
17856.713
17856.696
21686.486
21686.504
17856.675
17856.575
21686.457
21686.339
21108.296
15932.142
15932.126
21108.28
21108.132
15932.021
21108.248
15932.106
27052.423
25489.604
25852.549
27872.674
27440.359
26746.162
27213.868
26206.453
25846.228
27908.274
28099.897
27415.391
12407.953
12414.833
28301.772
28489.931
28885.343
28883.772
29390.244
24274.05
29477.332
24515.768
12414.707
12407.923
12680.86
12678.398
27552.581
27212.969
27876.488
25753.806
28224.354
26313.61
25622.682
25942.076
27835.736
27716.157
27050.64
27146.246
28113.775
28350.179
28687.509
28586.861
29150.964
29082.921
28410.631
28622.903
29558.895
24338.038
29759.45
24698.8
12407.621
12414.505
29344.35
24121.782
29368.243
24276.1
12414.471
12407.613
12678.075
12680.61
12680.634
12678.083
27103.182
27073.921
27717.08
25771.121
27829.439
25903.141
26159.86
26706.623
28653.444
28158.534
27495.363
27991.465
29321.932
28560.164
28697.723
29279.277
28433.481
28300.372
28134.528
28352.868
29296.458
24223.736
29153.009
24154.69
12407.596
12414.462
29587.65
24589.538
29986.275
25109.801
12414.419
12407.587
12680.599
12678.058
12678.048
12680.553
20200.603
15750.597
20200.219
15750.287
20199.879
15748.199
20200.254
15750.315
20199.89
15748.208
20200.204
15750.274
20199.855
15748.179
20199.843
15748.168
20200.148
15750.225
27810.684
26508.91
25831.739
28591.963
27956.855
27197.749
25646.345
25810.253
26792.075
27534.129
27625.772
26782.74
28730.61
23527.065
28913.981
23832.224
12407.477
12414.341
29343.879
24174.237
29989.819
24817.941
12414.35
12407.48
28290.464
29057.962
29206.824
28508.043
27795.331
28040.139
28203.011
28043.797
12680.479
12677.938
12680.474
12677.935
27062.521
26604.273
27293.631
25592.756
27692.476
26186.627
26837.955
27563.742
25601.086
27296.575
25279.456
26609.156
27736.915
27392.396
27715.385
27992.921
23959.479
12414.344
28749.76
23649.369
28966.129
12407.483
29271.331
24346.635
28820.39
23778.596
12407.496
12414.398
27627.997
28490.48
28524.836
27873.454
12677.945
12680.48
12677.956
12680.53
27573.644
27844.903
28423.494
28347.098
28311.01
28236.661
27803.144
28049.096
29064.759
23993.034
28994.32
24177.319
12407.654
26900.02
12414.504
27085.663
25585.547
26008.04
27787.87
27576.652
28900.072
23847.025
29113.658
24187.864
12414.577
27089.461
12407.671
26792.109
26054.883
25536.004
27478.844
27794.165
12678.141
12680.717
12680.652
12678.124
29704.673
28797.236
28849.233
29594.713
28301.651
28215.229
28253.163
28425.742
27177.149
27350.949
28012.394
26124.533
27929.096
26047.157
26627.839
27206.542
29252.821
28584.354
27887.739
28527.131
29349.717
24449.714
28992.19
24159.125
12407.955
12414.717
29702.015
24918.611
30318.698
25548.612
12416.575
12408.395
12678.407
12680.876
12678.769
12682.521
20199.706
15748.043
20200.053
15750.137
20200.057
15750.142
20199.71
15748.047
20200.062
15750.144
20199.629
15748.056
20199.648
15748.07
20200.147
15750.207
20200.454
15750.443
20200.048
15748.304
20200.023
15748.284
20200.356
15750.365
20200.721
15750.647
20200.467
15748.632
20203.22
15752.552
20201.003
15749.054
13453.446
13446.365
14837.886
28113.151
14843.198
28668.096
27946.113
28144.783
14843.623
14837.544
13446.378
13453.503
20616.775
15707.63
20620.484
15714.912
16491.721
14133.285
14130.175
16488.687
14130.19
16488.704
16491.794
14133.346
20616.794
15707.645
20620.575
15714.979
14132.898
14129.938
16491.232
16488.4
14133.189
14130.033
16488.516
16491.606
13452.964
13446.113
14837.61
29696.905
14842.657
30464.095
20616.405
15707.338
20619.833
15714.386
20616.556
15707.464
20620.338
15714.799
13453.353
13446.224
29159.461
29299.351
14843.458
14837.373
13453.602
13446.522
14838.056
27756.992
14843.367
28254.365
27432.049
27649.048
14843.736
14837.699
13446.521
13453.608
20617.03
15707.82
20620.739
15715.102
16491.924
14133.457
14130.347
16488.89
14130.345
16488.888
16491.929
14133.46
20617.025
15707.818
20620.743
15715.107
13453.602
27417.53
27937.76
14843.368
14838.049
13446.514
28758.343
28113.59
14843.64
14837.67
13446.497
13453.524
14133.378
16491.833
16488.863
14130.319
16488.883
16491.921
14133.453
14130.338
20617.019
15707.812
20620.734
15715.1
20616.993
15707.792
15715.017
20620.624
20620.243
15714.716
20616.45
15707.366
16488.423
16491.516
14133.091
14129.934
16488.398
14129.914
28189.265
20888.454
28015.15
20851.855
28918.351
21493.183
28372.572
21010.35
28551.082
21137.862
28016.245
20771.805
28167.709
20980.448
27841.085
20617.634
25931.599
25694.19
25790.921
25916.954
25898.538
26183.204
26187.428
25973.5
26247.905
26391.871
26354.043
26251.918
26111.545
26084.004
26111.959
26073.378
25910.477
25960.661
25986.607
25971.865
26612.782
26483.461
26459.512
26487.756
26230.612
26205.441
26173.452
26221.716
26106.12
26181.922
26452.314
26484.649
26118.093
21109.284
25893.31
20734.258
25964.807
26094.42
25979.504
20762.34
25717.693
20587.797
25854.396
26203.306
26303.948
26304.743
26242.941
26278.215
26307.518
28169.887
27733.492
28123.427
28419.208
16238.896
16236.007
16235.27
16237.402
16238.735
16235.927
16237.386
16235.238
16236.159
16238.147
16239.134
16236.392
16237.918
16235.744
21100.419
15926.263
15926.209
21100.347
21100.207
15926.105
17850.769
21679.509
21679.298
17850.526
17850.487
21679.005
21678.959
17850.421
21678.877
21678.717
17850.292
21099.698
15925.717
15925.76
21099.756
15925.777
15925.786
21099.787
21099.775
15925.86
21099.884
21099.831
15925.821
15925.806
21099.814
21099.808
15925.8
17849.954
17849.963
17850.028
17849.986
21678.351
21678.401
21678.322
21678.312
17849.937
17849.927
21678.29
21678.279
17849.901
21678.246
21678.179
17849.847
26191.391
26230.981
26139.926
26090.658
26084.595
21135.888
25708.96
20634.367
25756.014
26029.024
26001.701
21003.616
26005.162
25883.457
25806.121
20724.5
26176.571
26008.118
26013.733
26107.173
27840.555
28246.688
27789.73
28296.631
28328.789
21054.256
28350.461
21167.945
29448.707
21863.69
28830.135
21383.449
26207.258
26113.65
26138.875
26252.852
26504.61
26568.755
26937.341
26970.971
27072.833
26835.819
26827.232
26959.226
26488.565
26344.379
26291.066
26449.19
27499.208
20478.943
27876.681
20681.471
28378.22
21227.019
27837.936
20665.333
28839.797
21226.838
28134.158
20809.337
27949.928
20646.213
28110.968
20878.739
26053.996
26492.817
26568.617
26222.182
25942.886
25834.939
25994.102
25987.887
26282.055
26435.583
26344.899
26246.303
26588.161
26855.699
26884.114
26679.583
25479.133
25676.835
25698.219
25563.231
26071.956
25703.949
25811.096
26043.085
26150.135
26108.93
26225.529
26168.886
25905.957
25867.44
25863.002
25835.723
16241.503
16237.297
16237.813
16235.901
16238.865
16236.044
16235.378
16237.601
16237.212
16235.073
16238.66
16235.793
16235.829
16238.742
16237.226
16235.091
21103.489
15928.432
15926.969
21101.362
21100.264
15926.147
15926.333
21100.517
21099.852
15925.827
15925.851
21099.885
21099.923
15925.884
15925.955
21100.019
17850.054
17850.141
17849.973
17850.009
21678.385
21678.34
21678.55
21678.442
17850.354
17850.596
21679.113
21678.812
17851.319
21679.997
21681.929
17852.914
17849.736
17849.737
17849.759
17849.743
21678.058
21678.076
21678.051
21678.048
21099.59
15925.633
15925.62
21099.574
21099.567
15925.615
15925.617
21099.571
15925.62
21099.572
21099.58
15925.625
15925.645
21099.605
21099.681
15925.699
17849.754
17849.748
17849.843
17849.777
21678.101
21678.183
21678.065
21678.073
29336.481
24530.58
28885.073
24251.235
29545.461
24615.135
30125.189
25256.164
29609.022
24846.159
29222.012
24346.711
29064.021
24423.693
28882.835
24079.976
12850.475
12850.113
13790.265
13790.26
12850.107
12850.459
13790.241
13790.258
17108.919
15038.518
15038.538
17108.95
15038.54
15038.548
17108.963
17108.953
12850.097
12850.469
13790.254
13790.246
15038.423
15038.503
17108.909
17108.816
15038.525
15038.535
17108.947
17108.935
12850.08
13790.229
13790.158
12850.384
31563.788
26124.646
30944.096
25584.615
30572.666
25369.362
30439.493
25289.396
12850.232
12849.824
13789.997
13789.951
12849.702
12849.81
13789.82
13789.536
15038.251
15038.2
17108.56
17108.62
15038.056
15037.739
17108.025
17108.394
12850.369
24856.208
12849.975
24535.377
13790.144
13790.114
12850.312
25046.238
12849.96
24602.926
13790.097
13790.081
15038.379
17108.766
17108.795
15038.411
15038.361
15038.341
17108.745
17108.72
29967.018
29528.844
29511.418
29331.605
13448.27
28492.38
29117.929
14837.473
14832.135
13441.167
13441.134
29124.369
29085.916
14831.737
14837.681
13448.132
14124.864
16482.448
16485.372
14127.887
20608.911
15701.591
20612.48
15708.774
13447.919
13440.811
14831.745
29030.535
14837.091
29412.482
28682.298
28877.929
14837.407
14831.376
13440.802
13447.881
14124.499
16482.021
16485.051
14127.61
16485.087
14127.639
14124.508
16482.031
20608.391
15701.204
20612.132
15708.511
20608.378
15701.193
20612.083
15708.471
13447.872
13440.784
14831.715
28875.85
14837.037
29071.399
29128.666
29656.26
14837.35
14831.347
13440.775
13447.827
14127.542
14124.467
16481.983
16484.971
16485.038
14127.599
14124.48
16481.998
20608.35
15701.172
20612.067
15708.459
20608.332
15701.159
20611.984
15708.403
13447.758
29836.757
29035.85
14836.919
14831.595
13440.666
28786.904
28800.287
13440.663
14831.231
14837.27
13447.748
20611.839
15708.297
20608.126
15701.013
20608.13
15701.016
20611.854
15708.309
14124.336
14127.455
16484.868
16481.824
14124.333
16481.821
16484.857
14127.449
13447.813
13440.684
14831.255
28503.928
14837.342
28878.145
13447.751
14836.911
28794.5
14831.597
28310.079
13440.669
14127.455
14124.343
16481.832
16484.866
15708.303
20608.141
15701.022
20611.852
20611.933
15708.368
20608.157
15701.037
14124.356
14127.512
16484.933
16481.847
14124.558
16482.079
16485.165
14127.717
16485.076
14127.642
14124.54
16482.057
20608.42
15701.236
20612.111
15708.504
13440.856
13447.926
28754.489
29001.81
14837.106
14831.806
20608.446
15701.258
20612.224
15708.593
13448.009
13440.876
29003.482
28649.194
14831.469
14837.562
14129.831
14125.287
16482.955
16487.732
16485.359
14127.889
14124.858
16482.431
13448.159
13441.192
14832.189
29153.101
14837.368
29163.356
29543.262
30259.322
14840.061
14832.396
13441.689
13450.233
20608.89
15701.607
20612.46
15708.773
20609.57
15702.14
20615.535
15711.041
16902.516
16905.723
16902.023
16906.31
16902.202
16905.099
16901.83
16906.126
16902.707
16905.913
16902.197
16906.438
16902.697
16905.916
16906.324
16902.162
30309.872
25277.341
30172.492
25166.774
30827.031
25852.988
30379.829
25360.386
30559.782
25536.308
30273.591
25153.889
30114.378
25263.321
29923.441
24930.683
12845.089
12844.725
13784.527
13784.525
12844.734
12845.129
13784.569
13784.537
15032.359
15032.395
17102.038
17101.996
15032.345
15032.348
17101.983
17101.978
12844.705
12845.077
13784.512
13784.505
15032.277
15032.312
17101.939
17101.896
15032.322
15032.33
17101.962
17101.953
12844.697
13784.495
13784.465
12845.035
12845.328
25445.998
12845.038
25173.225
13784.865
13784.782
25227.957
12845.078
24902.08
13784.909
15032.769
17102.467
15032.625
15032.719
17102.409
17102.299
30277.655
29760.284
30318.189
30298.182
17102.028
15032.398
15032.42
17102.054
12845.241
25423.258
12844.818
24947.305
13784.623
13784.685
12845.145
25320.913
13784.58
13784.6
12844.796
25046.178
15032.513
15032.445
17102.083
17102.161
30051.381
30242.359
29951.864
30254.711
30391.816
25411.456
30410.142
25467.113
31371.31
26308.227
30740.447
25745.873
12845.163
12845.39
13784.846
13785
12845.669
13785.549
13786.965
12847.357
15035.005
15033.465
17103.251
17104.994
15032.862
15032.689
17102.361
17102.563
29647.562
24728.413
30053.953
25022.864
30179.297
25445.914
29898.954
24957.107
30999.446
25782.813
30312.549
25231.815
30113.115
25052.385
30104.841
25224.914
12844.603
12844.977
13784.401
13784.392
12844.968
12844.599
13784.387
13784.39
17101.796
17101.793
15032.188
15032.191
15032.193
15032.203
17101.81
17101.798
12844.606
12844.969
13784.391
13784.395
12845.034
12844.622
13784.412
13784.462
17101.824
15032.215
15032.27
17101.886
15032.192
17101.797
17101.803
15032.196
21018.296
16215.566
21016.202
16214.86
21016.173
16214.838
21018.162
16215.462
21018.29
16215.558
21016.215
16214.87
21018.308
16215.575
21016.22
16214.877
21017.272
16214.748
21015.591
16214.364
21017.923
16215.27
21015.764
16214.517
16215.445
16214.706
16215.374
16214.686
21018.055
21015.979
21018.149
21016.004
16895.961
16899.203
16899.541
16895.403
16895.519
16898.77
16894.996
16899.233
16895.485
16898.707
16894.963
16899.169
16898.58
16895.356
16894.837
16899.083
16894.865
16899.167
16898.571
16895.358
16895.6
16898.797
16899.423
16895.113
16896.051
16899.1
16896.2
16902.313
21009.353
16208.72
21007.254
16208.011
21009.291
16208.669
21007.243
16208.001
21009.434
16208.783
21007.297
16208.046
21009.371
16208.734
21007.284
16208.035
16209.035
16208.427
16209.204
16208.477
21009.971
21007.848
21007.788
21009.751
16208.925
16208.154
16208.808
16208.126
21007.407
21009.473
21007.441
21009.62
21009.858
16209.113
21007.984
16208.58
21013.246
16211.581
21008.821
16209.213
21007.102
16207.888
21009.188
16208.586
21009.295
16208.667
21007.127
16207.908
21009.2
16208.595
21007.099
16207.885
21007.092
16207.879
21009.189
16208.585
)
;
boundaryField
{
frontAndBack
{
type zeroGradient;
}
inlet
{
type fixedValue;
value nonuniform 0();
}
outlet
{
type zeroGradient;
}
solidWall
{
beta1 0.075;
blended 0;
type omegaWallFunction;
value nonuniform List<scalar>
6753
(
12243.42
12495.636
12234.236
12485.762
17813.275
16164.649
22005.64
17818.911
16180.99
22014.106
12239.009
12491.042
12254.398
12507.644
12159.646
13396.53
12156.629
13392.892
14489.828
15611.496
14485.998
15607.059
12156.261
13392.059
12158.201
13394.41
14485.015
15606.459
14487.808
15609.698
17818.812
16180.907
22013.988
17813.055
16164.458
22005.377
12254.336
12507.578
12238.865
12490.897
17813.013
16159.068
22004.331
17817.231
16169.285
22010.656
12234.063
12485.588
12243.211
12495.43
12158.104
13394.305
12156.008
13391.788
14487.693
15609.577
14484.726
15606.156
12156.046
13392.268
12158.337
13395.121
14485.343
15606.378
14488.336
15609.923
17817.096
16169.17
22010.494
17812.676
16158.779
22003.926
12243.123
12495.338
12233.847
12485.372
17812.304
16163.824
22004.479
17817.056
16179.386
22011.868
12238.395
12490.428
12253.204
12506.455
16286.647
22317.793
16284.114
22317.29
18891.837
17313.594
18891.411
17313.116
16283.449
22316.826
16285.195
22316.9
18890.841
17312.514
18890.586
17312.106
16285.199
22316.881
16283.504
22316.906
18890.569
17312.089
18890.91
17312.578
16284.221
22317.461
16286.858
22318.128
18891.558
17313.252
18892.131
17313.871
16286.784
22317.996
16284.084
22317.241
18892.017
17313.766
18891.376
17313.088
16283.29
22316.594
16284.935
22316.501
18890.651
17312.346
18890.259
17311.815
16284.786
22316.255
16282.845
22315.853
18890.059
17311.64
18890.058
17311.833
16283.032
22315.578
16284.764
22314.779
18890.034
17311.922
18889.393
17311.451
13306.773
13452.825
13317.811
13464.103
13658.505
13601.848
13639.407
13582.905
13687.307
13753.277
13698.89
13764.534
13633.203
13577.165
13644.286
13588.168
12986.376
13262.805
12975.805
13251.901
13317.811
13464.107
13306.777
13452.833
12981.47
13257.382
12999.364
13276.335
13312.781
13458.91
13331.497
13477.545
13698.899
13764.544
13687.32
13753.29
13644.296
13588.174
13633.217
13577.183
13693.595
13760.055
13712.848
13779.498
13639.442
13582.936
13658.562
13601.909
13605.455
13509.843
13586.499
13490.673
13264.819
13026.426
13246.319
13008.546
13580.755
13485.011
13591.806
13496.324
13240.45
13002.819
13251.345
13013.818
12822.958
12616.185
12805.214
12598.938
16318.162
22466.781
16302.224
22457.864
12430.403
12414.942
12799.725
12593.217
12810.405
12603.193
16297.551
22456.848
16308.063
22463.624
12410.032
12419.463
13591.813
13496.33
13580.774
13485.029
13251.351
13013.829
13240.468
13002.837
13586.531
13490.709
13605.516
13509.909
13246.355
13008.583
13264.884
13026.494
12810.417
12603.204
12799.741
12593.233
16308.071
22463.624
16297.565
22456.861
12419.471
12410.043
12805.25
12598.973
12823.026
12616.252
16302.269
22457.92
16318.25
22466.907
12414.976
12430.47
12999.296
13276.266
12981.321
13257.235
13331.425
13477.469
13312.632
13458.76
12975.628
13251.719
12986.166
13262.596
13306.602
13452.66
13317.609
13463.908
13712.767
13779.42
13693.44
13759.905
13658.49
13601.838
13639.299
13582.799
13687.142
13753.113
13698.697
13764.344
13633.044
13577.008
13644.101
13587.987
12986.07
13262.5
12975.407
13251.501
13317.513
13463.81
13306.385
13452.439
12980.847
13256.76
12998.16
13275.133
13312.169
13458.297
13330.317
13476.374
13698.6
13764.245
13686.924
13752.891
13644.003
13587.884
13632.824
13576.795
13692.98
13759.449
13711.678
13778.347
13638.848
13582.35
13657.44
13600.809
13605.446
13509.834
13586.396
13490.572
13264.806
13026.413
13246.216
13008.447
13580.601
13484.855
13591.629
13496.15
13240.297
13002.67
13251.177
13013.66
12822.946
12616.173
12805.118
12598.844
16318.153
22466.779
16302.111
22457.695
12430.396
12414.855
12799.579
12593.079
12810.252
12603.044
16297.367
22456.599
16307.868
22463.359
12409.892
12419.314
13591.524
13496.039
13580.388
13484.644
13251.067
13013.546
13240.092
13002.469
13585.949
13490.131
13604.432
13508.846
13245.791
13008.027
13263.855
13025.498
12810.138
12602.931
12799.382
12592.887
16307.725
22463.174
16297.129
22456.268
12419.206
12409.708
12804.706
12598.436
12822.059
12615.314
16301.583
22457.017
16317.074
22465.308
12414.45
12429.559
15535.574
15349.417
15536.223
15350.095
15165.21
14981.386
15165.915
14982.017
14800.321
14621.298
14800.88
14621.843
14444.884
14285.452
14445.412
14286.018
14143.808
13999.859
14144.406
14000.405
13857.058
13715.39
13857.549
13715.914
16217.434
16566.943
16217.165
15971.05
15743.54
15970.738
15743.245
16566.373
16216.57
16565.962
16216.168
15970.159
15742.685
15969.766
15742.296
15536.477
15350.356
15536.249
15350.083
15166.18
14982.283
15165.865
14982.03
15535.708
15349.558
15535.325
15349.18
15165.354
14981.533
15164.98
14981.112
16565.978
16216.193
16566.544
16216.729
15969.798
15742.334
15970.317
15742.837
16567.315
16217.532
16568.043
16218.163
15971.088
15743.583
15971.753
15744.219
15535.366
15349.223
15535.852
15349.695
15165.026
14981.161
15165.485
14981.657
15536.576
15350.398
15537.131
15350.982
15166.168
14982.32
15166.779
14982.858
14801.151
14622.111
14800.954
14621.926
14445.675
14286.276
14445.498
14286.059
14800.471
14621.451
14800.005
14621.047
14445.041
14285.614
14444.643
14285.229
14144.666
14000.66
14144.41
14000.464
13857.806
13716.173
13857.661
13715.993
14143.977
14000.035
14143.642
13999.712
13857.242
13715.581
13856.88
13715.226
14800.058
14621.096
14800.588
14621.568
14444.687
14285.266
14445.145
14285.712
14801.232
14622.187
14801.697
14622.637
14445.753
14286.304
14446.185
14286.774
14143.686
13999.749
14144.076
14000.135
13856.916
13715.261
13857.337
13715.672
14144.655
14000.694
14145.157
14001.147
13857.889
13716.211
13858.289
13716.653
18801.77
17164.845
16101.806
15101.717
14331.997
13641.533
14336.293
13645.847
13003.003
12543.267
13006.55
12546.236
13570.132
13443.287
13570.685
13443.83
13333.154
13333.684
13219.288
13570.947
13444.095
13570.732
13443.888
13333.954
13219.562
13333.75
13219.361
13570.328
13443.485
13570.021
13443.185
13333.352
13218.964
13333.053
13218.668
13104.301
12984.264
13104.099
12984.1
12872.15
12775.003
12872.021
12774.868
13103.702
12983.703
13103.408
12983.372
12871.624
12774.47
12871.257
12774.105
13570.054
13443.214
13570.413
13443.567
13333.079
13218.691
13333.425
13219.031
13570.941
13444.083
13571.418
13444.557
13333.935
13219.532
13334.404
13219.995
13103.432
12983.394
13103.763
12983.758
12871.279
12774.127
12871.673
12774.514
13104.257
12984.242
13104.712
12984.65
12872.15
12774.983
12872.51
12775.335
12683.798
12580.671
12683.62
12580.451
12458.408
12333.967
12458.217
12333.805
12683.222
12580.057
12682.896
12579.768
12457.791
12333.384
12457.469
12333.028
12426.364
12682.918
12579.79
12683.262
12580.092
12457.495
12333.058
12457.825
12333.416
12683.724
12580.548
12684.102
12580.951
12458.306
12333.89
12458.663
12334.203
12426.396
12426.695
16713.046
23639.202
16713.288
23639.221
20355.682
17760.026
20355.601
17758.926
12427.111
12427.427
16713.699
23639.251
16714.043
23639.303
20355.625
17759.615
20355.758
17761.646
15756.23
20207.807
15754.147
20207.475
16139.597
13823.954
16139.551
13823.92
15754.167
20207.499
15756.295
20207.886
16139.628
13824.019
16139.771
13825.991
16488.398
14129.914
15707.366
20616.45
15714.716
20620.243
12412.509
12419.43
16488.423
14129.934
16491.516
14133.091
12685.426
12682.894
12682.912
12685.484
16568.155
16218.284
16567.73
16217.937
15971.886
15744.36
15971.496
15743.987
16567.119
16217.301
16566.687
16216.879
15970.875
15743.385
15970.464
15742.979
15537.28
15351.14
15536.973
15350.788
15166.944
14983.026
15166.55
14982.693
15536.39
15350.221
15535.99
15349.824
15165.997
14982.154
15165.605
14981.716
16566.671
16216.872
16567.181
16217.355
15970.465
15742.987
15970.934
15743.442
16567.861
16218.071
16568.426
16218.544
15971.622
15744.11
15972.135
15744.598
15536.002
15349.842
15536.444
15350.271
15165.626
14981.742
15166.045
14982.201
15537.094
15350.905
15537.508
15351.355
15166.664
14982.805
15167.147
14983.219
14801.871
14622.813
14801.596
14622.549
14446.36
14286.947
14446.103
14286.65
14801.071
14622.031
14800.587
14621.608
14445.604
14286.164
14445.187
14285.76
14145.329
14001.317
14144.993
14001.041
13858.459
13716.823
13858.235
13716.565
14144.517
14000.57
14144.165
14000.23
13857.774
13716.113
13857.397
13715.745
14800.62
14621.641
14801.115
14622.08
14445.218
14285.786
14445.645
14286.203
14801.706
14622.651
14802.052
14622.987
14446.21
14286.757
14446.532
14287.122
14144.194
14000.253
14144.556
14000.614
13857.42
13715.766
13857.818
13716.157
14145.1
14001.142
14145.502
14001.498
13858.336
13716.665
13858.642
13717.011
16244.927
21686.339
17856.575
16242.151
21686.457
17856.675
16029.643
14766.776
16029.735
14766.858
16241.465
21686.486
17856.696
16243.615
21686.504
17856.713
16029.752
14766.376
16029.77
14765.888
13750.382
12974.033
13750.028
12974.109
15932.021
21108.132
15932.106
21108.248
12427.231
12427.612
13749.624
12974.125
13749.215
12973.758
15932.126
21108.28
15932.142
21108.296
12427.628
12427.276
16243.622
21686.515
17856.723
16241.486
21686.523
17856.731
16029.779
14765.897
16029.787
14766.405
16242.19
21686.507
17856.715
16245.028
21686.477
17856.688
16029.771
14766.896
16029.746
14766.866
13749.218
12973.761
13749.647
12974.153
15932.145
21108.302
15932.159
21108.317
12427.279
12427.654
13750.058
12974.137
13750.459
12974.49
15932.147
21108.3
15932.114
21108.257
12427.644
12427.618
16568.327
16218.457
16567.708
16217.918
15972.058
15744.533
15971.48
15743.972
16566.964
16217.153
16566.418
16216.625
15970.733
15743.248
15970.221
15742.745
15537.451
15351.307
15536.959
15350.773
15167.107
14983.185
15166.533
14982.675
15536.257
15350.09
15535.764
15349.605
15165.868
14982.027
15165.39
14981.506
16566.259
16216.484
16566.506
16216.728
15970.098
15742.637
15970.345
15742.888
16566.656
16216.952
16566.205
16216.462
15970.583
15743.14
15970.174
15742.75
15535.669
15349.521
15535.923
15349.778
15165.317
14981.443
15165.575
14981.751
15536.192
15350.062
15535.766
15349.708
15165.873
14982.064
15165.586
14981.741
14802.027
14622.963
14801.577
14622.528
14446.507
14287.092
14446.081
14286.628
14800.946
14621.909
14800.432
14621.456
14445.484
14286.046
14444.992
14285.57
14145.472
14001.461
14144.97
14001.02
13858.605
13716.971
13858.215
13716.545
14144.403
14000.459
14143.981
14000.054
13857.666
13716.008
13857.228
13715.582
14800.379
14621.408
14800.686
14621.668
14444.944
14285.52
14445.25
14285.824
14801.012
14622
14800.655
14621.666
14445.592
14286.176
14445.278
14285.939
14143.935
14000.003
14144.192
14000.266
13857.178
13715.532
13857.484
13715.837
14144.554
14000.63
14144.39
14000.456
13857.853
13716.209
13857.668
13716.102
16244.92
21686.327
17856.559
16242.028
21686.283
17856.528
16029.625
14766.75
16029.6
14766.731
16241.286
21686.249
17856.501
16243.405
21686.212
17856.472
16029.577
14766.21
16029.55
14765.682
13750.354
12974.394
13749.909
12973.995
15931.995
21108.102
15931.973
21108.068
12427.525
12427.508
13749.469
12973.979
13749.022
12973.195
15931.948
21108.042
15931.927
21108.008
12427.488
12426.793
16243.291
21686.078
17856.36
16241.084
21685.99
17856.292
16029.451
14765.598
16029.393
14766.043
16241.576
21685.722
17856.07
16244.027
21685.168
17855.625
16029.193
14766.365
16028.805
14766.012
13748.94
12972.728
13749.311
12973.446
15931.826
21107.886
15931.772
21107.81
12426.401
12427.035
13749.566
12973.681
13749.676
12973.763
15931.59
21107.603
15931.242
21107.134
12427.205
12426.926
18802.089
17165.147
18796.596
17161.199
16102.093
15101.985
16098.04
15097.925
18796.622
17160.545
18800.606
17163.229
16096.902
15097.448
16099.852
15100.548
14336.55
13645.671
14332.427
13641.52
13006.403
12546.467
13003.009
12543.643
14331.988
13641.128
14334.781
13643.659
13002.652
12542.946
13004.959
12545.114
18800.606
17163.236
18796.633
17160.551
16099.859
15100.554
16096.908
15097.456
18796.642
17161.242
18802.195
17165.245
16098.084
15097.966
16102.19
15102.081
14334.787
13643.667
14331.996
13641.138
13004.965
12545.12
13002.664
12542.959
14332.465
13641.555
14336.641
13645.757
13003.041
12543.674
13006.484
12546.546
18802.087
17165.146
18796.456
17161.078
16102.096
15101.991
16097.93
15097.822
18796.414
17160.357
18800.385
17163.027
16096.725
15097.282
16099.662
15100.364
14336.555
13646.097
14332.328
13641.845
13006.79
12546.466
13003.3
12543.551
14331.83
13640.978
14334.606
13643.49
13002.508
12542.807
13004.795
12544.954
18800.23
17162.893
18796.14
17160.11
16099.537
15100.251
16096.497
15097.072
18795.891
17160.566
18800.873
17164.053
16097.453
15097.376
16101.089
15101.061
14334.499
13643.39
14331.634
13640.796
13004.701
12544.864
13002.339
12542.648
14331.909
13641.453
14335.689
13645.291
13002.93
12543.198
13006.038
12545.758
13571.594
13444.736
13571.302
13444.455
13334.587
13220.183
13334.31
13219.909
13570.86
13444.017
13570.542
13443.708
13333.879
13219.482
13333.575
13219.183
13104.904
12984.845
13104.631
12984.61
12872.708
12775.537
12872.508
12775.333
13104.207
12984.19
13103.911
12983.858
12872.091
12774.917
12871.725
12774.556
13570.562
13443.723
13570.903
13444.06
13333.586
13219.192
13333.917
13219.517
13571.401
13444.547
13571.786
13444.934
13334.399
13219.992
13334.784
13220.375
13103.92
12983.866
13104.238
12984.216
12871.732
12774.561
12872.113
12774.936
13104.705
12984.676
13105.085
12985.012
12872.564
12775.381
12872.859
12775.672
17108.816
15038.423
17108.909
15038.503
13790.158
12850.384
13790.229
12850.08
17108.935
15038.525
17108.947
15038.535
13790.246
12850.097
13790.254
12850.469
16215.462
21018.162
16906.324
16214.838
21016.173
16902.162
14843.64
13453.524
14837.67
13446.497
16214.86
21016.202
16902.697
16215.566
21018.296
16905.916
14838.049
13446.514
14843.368
13453.602
17108.953
15038.54
17108.963
15038.548
13790.26
12850.475
13790.265
12850.113
17108.95
15038.538
17108.919
15038.518
13790.258
12850.107
13790.241
12850.459
16215.575
21018.308
16906.438
16214.877
21016.22
16902.197
14843.736
13453.608
14837.699
13446.521
16214.87
21016.215
16902.707
16215.558
21018.29
16905.913
14838.056
13446.522
14843.367
13453.602
12684.31
12581.167
12684.064
12580.881
12458.89
12334.439
12458.639
12334.225
12683.651
12580.472
12683.329
12580.19
12458.199
12333.788
12457.885
12333.446
12427.68
12427.457
16714.41
23639.811
16714.181
23639.949
20356.24
17762.101
20356.249
17760.182
12427.077
12426.794
16713.817
23639.989
16713.593
23639.996
20356.281
17759.612
20356.384
17760.728
15756.653
20208.363
15754.626
20208.109
16140.171
13826.35
16140.13
13824.463
15754.647
20208.136
15756.739
20208.483
16140.093
13824.399
16140.152
13824.443
12683.334
12580.195
12683.667
12580.486
12457.892
12333.454
12458.214
12333.802
12684.106
12580.918
12684.43
12581.275
12458.671
12334.254
12458.988
12334.53
12426.802
12427.092
16713.606
23640.014
16713.837
23640.017
20356.398
17760.669
20356.307
17759.485
12427.486
12427.77
16714.222
23640.017
16714.527
23640.014
20356.306
17760.08
20356.4
17762.01
15756.749
20208.497
15754.658
20208.155
16140.165
13824.455
16140.111
13824.415
15754.66
20208.156
15756.748
20208.497
16140.169
13824.5
16140.283
13826.45
15715.017
20620.624
15707.792
20616.993
12419.667
12412.854
16491.833
14133.378
16488.863
14130.319
15707.812
20617.019
15715.1
20620.734
12412.87
12419.736
16488.883
14130.338
16491.921
14133.453
12685.755
12683.268
12683.285
12685.823
15715.107
20620.743
15707.818
20617.025
12419.742
12412.875
16491.929
14133.46
16488.888
14130.345
15707.82
20617.03
15715.102
20620.739
12412.876
12419.737
16488.89
14130.347
16491.924
14133.457
12685.83
12683.292
12683.294
12685.829
13571.742
13444.882
13571.282
13444.431
13334.727
13220.312
13334.281
13219.872
13570.756
13443.914
13570.386
13443.557
13333.774
13219.374
13333.428
13219.037
13105.018
12984.94
13104.584
12984.551
12872.784
12775.593
12872.438
12775.251
13104.096
12984.073
13103.767
12983.713
12871.969
12774.79
12871.578
12774.406
13570.334
13443.5
13570.595
13443.762
13333.366
13218.973
13333.626
13219.231
13570.966
13444.129
13570.928
13444.108
13333.991
13219.592
13333.991
13219.602
13103.7
12983.644
13103.955
12983.933
12871.507
12774.331
12871.83
12774.651
13104.312
12984.287
13104.34
12984.289
12872.18
12774.999
12872.171
12775.016
17108.795
15038.411
17108.766
15038.379
13790.144
12850.369
13790.114
12849.975
17108.745
15038.361
17108.72
15038.341
13790.097
12849.96
13790.081
12850.312
16215.445
21018.149
16906.31
16214.706
21016.004
16902.023
14843.623
13453.503
14837.544
13446.378
16214.686
21015.979
16902.516
16215.374
21018.055
16905.723
14837.886
13446.365
14843.198
13453.446
17108.62
15038.251
17108.56
15038.2
13789.997
12850.232
13789.951
12849.824
17108.394
15038.056
17108.025
15037.739
13789.82
12849.702
13789.536
12849.81
16215.27
21017.923
16906.126
16214.517
21015.764
16901.83
14843.458
13453.353
14837.373
13446.224
16214.364
21015.591
16902.202
16214.748
21017.272
16905.099
14837.61
13446.113
14842.657
13452.964
12684.348
12581.188
12683.974
12580.784
12458.899
12334.442
12458.539
12334.124
12683.52
12580.338
12683.18
12580.041
12458.064
12333.658
12457.738
12333.301
12427.679
12427.357
16714.404
23639.858
16714.052
23639.793
20356.262
17761.819
20356.124
17759.859
12426.95
12426.652
16713.653
23639.77
16713.413
23639.76
20356.202
17759.395
20356.293
17760.576
15756.629
20208.353
15754.498
20207.962
16140.173
13826.361
16140.027
13824.387
15754.484
20207.945
15756.571
20208.283
16139.955
13824.292
16140.006
13824.331
12683.102
12579.959
12683.382
12580.201
12457.656
12333.22
12457.931
12333.528
12683.728
12580.545
12683.813
12580.698
12458.307
12333.901
12458.451
12334.034
12426.57
12426.823
16713.303
23639.626
16713.491
23639.564
20356.077
17760.408
20355.941
17759.266
12427.141
12427.3
16713.779
23639.444
16713.946
23639.286
20355.845
17759.865
20355.838
17761.794
15756.468
20208.161
15754.339
20207.771
16139.914
13824.256
16139.826
13824.192
15754.247
20207.668
15756.216
20207.889
16139.811
13824.22
16139.847
13826.116
15714.979
20620.575
15707.645
20616.794
12419.642
12412.741
16491.794
14133.346
16488.704
14130.19
15707.63
20616.775
15714.912
20620.484
12412.729
12419.59
16488.687
14130.175
16491.721
14133.285
12685.73
12683.157
12683.145
12685.679
15714.799
20620.338
15707.464
20616.556
12419.502
12412.598
16491.606
14133.189
16488.516
14130.033
15707.338
20616.405
15714.386
20619.833
12412.496
12419.156
16488.4
14129.938
16491.232
14132.898
12685.594
12683.021
12682.941
12685.359
14748.995
16716.205
14742.822
16711.543
13298.431
13292.827
15454.056
17946.901
15449.633
17940.796
14741.915
16710.27
14746.36
16712.648
13292.009
13296.072
15448.649
17939.675
15451.246
17943.705
13928.331
13925.519
13924.631
13925.808
15006.436
18570.147
15005.037
18568.471
12647.606
12646.431
15361.806
15124.023
19549.968
15360.362
15120.099
19548.088
15004.042
18567.267
15003.584
18566.719
12645.248
12644.865
15358.801
15119.059
19546.767
15358.333
15120.388
19546.161
14746.018
16712.25
14740.992
16709.212
13295.762
13291.185
15450.9
17943.294
15447.697
17938.569
14740.909
16709.374
14745.755
16712.557
13291.111
13295.531
15447.613
17938.47
15450.615
17942.957
13925.495
13923.777
13923.701
13925.241
15003.264
18566.31
15003.12
18566.129
12644.594
12644.473
15358.008
15120.088
19545.757
15357.864
15118.141
19545.578
15003.04
18566.029
15002.996
18565.976
12644.751
12644.715
15358.317
15118.063
19545.476
15358.273
15120.431
19545.42
14745.632
16712.417
14740.665
16709.093
13295.418
13290.892
15450.489
17942.806
15447.37
17938.181
14740.624
16708.786
14745.481
16711.626
13290.854
13295.282
15447.326
17938.13
15450.363
17942.659
13925.127
13923.483
13923.443
13925.014
15002.88
18565.827
15002.814
18565.744
12644.616
12644.561
15358.154
15120.323
19545.272
15358.087
15117.843
19545.186
15002.771
18565.69
15002.76
18565.677
12644.18
12644.171
15357.51
15117.802
19545.132
15357.498
15119.599
19545.117
14745.474
16711.617
14740.6
16708.757
13295.276
13290.833
15450.355
17942.65
15447.304
17938.103
14740.612
16709.03
14745.536
16712.303
13290.844
13295.333
15447.316
17938.118
15450.394
17942.695
13925.006
13923.423
13923.434
13925.041
15002.751
18565.667
15002.751
18565.665
12644.163
12644.163
15357.488
15119.588
19545.103
15357.489
15117.782
19545.107
15002.762
18565.678
15002.79
18565.714
12644.516
12644.54
15358.033
15117.789
19545.117
15358.061
15120.229
19545.151
12156.571
13393.169
12152.379
13388.227
14486.221
15607.644
14480.971
15601.664
12151.208
13386.512
12152.809
13388.492
14479.035
15600.036
14481.426
15602.846
17814.454
16177.037
22008.659
17806.921
16158.926
21997.82
12251.425
12504.629
12234.7
12486.667
17805.709
16152.485
21995.338
17809.433
16162.238
22001.042
12229.11
12480.563
12237.909
12490.053
12152.568
13388.227
12150.476
13385.712
14481.142
15602.543
14478.178
15599.12
12150.751
13386.443
12153.697
13390.001
14479.051
15599.606
14482.791
15603.942
17809.09
16161.94
22000.626
17804.67
16151.557
21994.064
12237.684
12489.826
12228.413
12479.86
17804.582
16156.829
21994.95
17810.219
16173.151
22003.403
12233.126
12485.08
12248.5
12501.664
12153.61
13389.906
12150.575
13386.249
14482.689
15603.833
14478.842
15599.382
12150.204
13385.414
12152.177
13387.799
14477.857
15598.777
14480.683
15602.052
17810.095
16173.042
22003.252
17804.328
16156.599
21994.635
12248.417
12501.58
12232.952
12484.901
17804.281
16151.211
21993.587
17808.534
16161.443
21999.945
12228.151
12479.594
12237.309
12489.444
12152.168
13387.789
12150.188
13385.397
14480.671
15602.039
14477.838
15598.757
12150.531
13386.201
12153.534
13389.82
14478.79
15599.325
14482.595
15603.731
17808.518
16161.43
21999.927
17804.257
16151.188
21993.558
12237.299
12489.435
12228.134
12479.576
17804.262
16156.539
21994.553
17809.977
16172.932
22003.105
12232.906
12484.855
12248.333
12501.493
16283.311
22312.864
16279.557
22310.522
18887.78
17309.98
18885.797
17308.073
16278.111
22308.896
16279.45
22308.267
18884.249
17306.58
18883.401
17305.632
16279.253
22307.971
16277.449
22307.812
18883.154
17305.408
18883.339
17305.753
16278.111
22308.265
16280.698
22308.814
18883.901
17306.351
18884.371
17306.873
16280.613
22308.723
16277.905
22307.965
18884.294
17306.805
18883.647
17306.119
16277.133
22307.348
16278.818
22307.296
18882.947
17305.397
18882.583
17304.886
16278.821
22307.305
16277.125
22307.325
18882.591
17304.895
18882.926
17305.376
16277.875
22307.913
16280.552
22308.611
18883.601
17306.075
18884.195
17306.71
12996.255
13273.182
12976.953
13252.798
13328.35
13474.38
13308.204
13454.307
12970.441
13246.458
12980.618
13256.971
13301.351
13447.384
13312
13458.278
13709.64
13776.286
13688.936
13755.402
13655.388
13598.753
13634.857
13578.399
13681.814
13747.795
13693.016
13758.68
13627.808
13571.836
13638.532
13582.489
12980.383
13256.732
12969.72
13245.732
13311.763
13458.041
13300.634
13446.672
12975.322
13251.153
12993.196
13270.082
13306.572
13452.681
13325.264
13471.291
13692.775
13758.442
13681.102
13747.095
13638.298
13582.256
13627.129
13571.176
13687.308
13753.794
13706.535
13773.21
13633.293
13576.872
13652.387
13595.814
13602.367
13506.789
13582.023
13486.26
13261.83
13023.506
13242.015
13004.351
13575.472
13479.807
13586.183
13490.792
13235.383
12997.887
13245.966
13008.592
12820.098
12613.384
12801.116
12594.936
16314.58
22462.02
16297.136
22450.88
12427.659
12411.034
12794.914
12588.532
12805.315
12598.237
16291.603
22448.715
16301.787
22455.042
12405.457
12414.63
13585.952
13490.565
13574.828
13479.182
13245.745
13008.379
13234.783
12997.31
13580.527
13484.805
13599.481
13503.972
13240.614
13003.003
13259.111
13020.881
12805.105
12598.033
12794.358
12587.996
16301.529
22454.711
16290.94
22447.824
12414.431
12404.94
12799.814
12593.679
12817.556
12610.925
16295.574
22448.786
16311.514
22457.721
12409.819
12425.28
12993.108
13269.99
12975.135
13250.96
13325.169
13471.195
13306.379
13452.486
12969.443
13245.45
12979.988
13256.331
13300.351
13446.386
13311.361
13457.636
13706.437
13773.11
13687.11
13753.595
13652.287
13595.714
13633.095
13576.675
13680.813
13746.805
13692.368
13758.033
13626.842
13570.89
13637.896
13581.86
12979.979
13256.321
12969.426
13245.432
13311.353
13457.628
13300.334
13446.368
12975.088
13250.913
12993.017
13269.897
13306.332
13452.437
13325.076
13471.101
13692.358
13758.023
13680.794
13746.785
13637.886
13581.85
13626.822
13570.87
13687.06
13753.544
13706.34
13773.013
13633.046
13576.627
13652.191
13595.618
13599.379
13503.87
13580.33
13484.608
13259.012
13020.784
13240.423
13002.813
13574.542
13478.901
13585.56
13490.178
13234.508
12997.04
13245.368
13008.01
12817.46
12610.83
12799.627
12593.496
16311.389
22457.553
16295.338
22448.455
12425.185
12409.638
12794.092
12587.736
12804.744
12597.681
16290.609
22447.368
16301.084
22454.104
12404.686
12414.089
13585.549
13490.169
13574.522
13478.879
13245.359
13008.002
13234.486
12997.02
13580.282
13484.562
13599.285
13503.776
13240.378
13002.771
13258.921
13020.694
12804.738
12597.674
12794.073
12587.718
16301.072
22454.083
16290.583
22447.334
12414.08
12404.667
12799.587
12593.458
12817.374
12610.746
16295.293
22448.39
16311.286
22457.409
12409.603
12425.105
14745.578
16712.351
14740.704
16709.132
13295.372
13290.929
15450.439
17942.748
15447.418
17938.234
14740.719
16708.889
14745.606
16711.763
13290.942
13295.397
15447.437
17938.254
15450.505
17942.819
13925.083
13923.526
13923.543
13925.142
15002.833
18565.769
15002.863
18565.803
12644.577
12644.602
15358.106
15120.271
19545.207
15358.138
15117.893
19545.25
15002.885
18565.828
15002.905
18565.852
12644.277
12644.293
15357.628
15117.922
19545.285
15357.648
15119.75
19545.308
14745.622
16711.781
14740.764
16708.94
13295.412
13290.983
15450.52
17942.838
15447.484
17938.308
14740.797
16709.237
14745.769
16712.566
13290.741
13295.815
15447.516
17937.739
15450.641
17943.588
13925.156
13923.586
13923.614
13925.264
15002.919
18565.871
15002.93
18565.884
12644.305
12644.314
15357.663
15119.762
19545.325
15357.674
15117.966
19545.343
15002.959
18565.921
15003.03
18566.01
12644.683
12644.741
15358.236
15117.991
19545.377
15358.304
15120.47
19545.462
14745.955
16712.781
14741.155
16709.646
13295.715
13291.337
15450.833
17943.208
15447.886
17938.782
14741.227
16709.47
14746.192
16712.436
13291.401
13295.925
15447.961
17938.868
15451.102
17943.523
13925.439
13923.949
13924.016
13925.68
15003.208
18566.239
15003.311
18566.363
12644.893
12644.979
15358.488
15120.638
19545.689
15358.594
15118.335
19545.828
15003.384
18566.452
15003.468
18566.559
12644.696
12644.765
15358.135
15118.41
19545.924
15358.216
15120.295
19546.023
14746.455
16712.743
14741.845
16710.186
13296.165
13291.954
15451.363
17943.838
15448.568
17939.594
14742.487
16711.188
14748.655
16715.872
13292.526
13298.115
15449.207
17940.352
15453.549
17946.402
13925.915
13924.556
13925.123
13927.847
15003.698
18566.862
15003.929
18567.151
12644.961
12645.15
15358.449
15120.498
19546.306
15358.672
15118.905
19546.589
15004.512
18567.891
15005.738
18569.404
12645.978
12646.989
15359.779
15119.44
19547.301
15360.987
15123.045
19548.826
12153.567
13389.859
12150.614
13386.292
14482.637
15603.775
14478.888
15599.431
12150.3
13385.52
12152.297
13387.932
14477.973
15598.901
14480.827
15602.206
17810.027
16172.976
22003.166
17804.383
16156.649
21994.704
12248.366
12501.528
12232.989
12484.938
17804.421
16151.337
21993.761
17808.709
16161.6
22000.16
12228.245
12479.688
12237.426
12489.562
12152.307
13387.941
12150.336
13385.558
14480.837
15602.216
14478.014
15598.945
12150.693
13386.378
12153.726
13390.032
14478.98
15599.528
14482.822
15603.972
17808.72
16161.609
22000.173
17804.47
16151.379
21993.819
12237.433
12489.57
12228.277
12479.72
17804.493
16156.745
21994.836
17810.25
16173.176
22003.439
12233.061
12485.009
12248.515
12501.676
12153.862
13390.182
12150.969
13386.682
14482.984
15604.146
14479.308
15599.88
12150.692
13385.949
12152.734
13388.409
14478.435
15599.396
14481.339
15602.752
17810.449
16173.354
22003.684
17804.895
16157.107
21995.332
12248.651
12501.816
12233.334
12485.288
17804.984
16151.84
21994.451
17809.328
16162.151
22000.917
12228.625
12480.073
12237.84
12489.982
12152.897
13388.586
12151.085
13386.374
14481.526
15602.948
14478.884
15599.869
12151.845
13387.626
12155.767
13392.241
14480.308
15600.934
14485.173
15606.464
17809.545
16162.335
22001.178
17805.511
16152.293
21995.085
12237.98
12490.126
12228.965
12480.417
17806.068
16158.117
21996.744
17813.05
16175.641
22006.846
12234.091
12486.051
12250.361
12503.53
16280.599
22308.689
16277.973
22308.064
18884.264
17306.776
18883.731
17306.196
16277.25
22307.527
16278.962
22307.52
18883.099
17305.537
18882.773
17305.062
16278.993
22307.568
16277.315
22307.62
18882.814
17305.101
18883.175
17305.604
16278.096
22308.267
16280.835
22309.074
18883.898
17306.345
18884.584
17307.063
16280.985
22309.289
16278.433
22308.781
18884.77
17307.237
18884.335
17306.746
16277.801
22308.375
16279.641
22308.584
18883.809
17306.18
18883.658
17305.856
12993.053
13269.933
12975.173
13250.998
13325.114
13471.14
13306.417
13452.523
12969.54
13245.547
12980.109
13256.452
13300.447
13446.482
13311.481
13457.754
13706.379
13773.053
13687.146
13753.63
13652.23
13595.657
13633.13
13576.71
13680.908
13746.898
13692.485
13758.151
13626.935
13570.982
13638.012
13581.975
12980.117
13256.461
12969.572
13245.579
13311.49
13457.765
13300.479
13446.513
12975.246
13251.071
12993.204
13270.085
13306.488
13452.595
13325.262
13471.286
13692.497
13758.162
13680.941
13746.931
13638.022
13581.984
13626.967
13571.014
13687.219
13753.703
13706.527
13773.198
13633.203
13576.781
13652.374
13595.799
13599.324
13503.817
13580.365
13484.645
13258.96
13020.735
13240.46
13002.85
13574.634
13478.99
13585.674
13490.293
13234.596
12997.127
13245.481
13008.121
12817.414
12610.787
12799.666
12593.536
16311.341
22457.483
16295.396
22448.534
12425.147
12409.681
12794.18
12587.824
12804.856
12597.791
16290.723
22447.527
16301.226
22454.299
12404.772
12414.196
13585.683
13490.3
13574.666
13479.023
13245.488
13008.129
13234.628
12997.159
13580.436
13484.716
13599.465
13503.954
13240.528
13002.919
13259.093
13020.863
12804.862
12597.798
12794.21
12587.853
16301.236
22454.313
16290.762
22447.583
12414.204
12404.802
12799.732
12593.601
12817.539
12610.908
16295.48
22448.655
16311.494
22457.7
12409.744
12425.264
12993.351
13270.237
12975.536
13251.367
13325.417
13471.444
13306.785
13452.894
12969.938
13245.952
12980.542
13256.892
13300.853
13446.891
13311.921
13458.198
13706.69
13773.366
13687.524
13754.01
13652.541
13595.969
13633.507
13577.085
13681.324
13747.316
13692.935
13758.601
13627.348
13571.394
13638.456
13582.415
12980.693
13257.047
12970.291
13246.31
13312.078
13458.357
13301.208
13447.249
13693.099
13758.767
13681.686
13747.68
13638.623
13582.585
13627.708
13571.752
13599.637
13504.128
13580.742
13485.019
13259.268
13021.038
13240.828
13003.213
13575.046
13479.4
13586.114
13490.728
13234.999
12997.524
13245.907
13008.54
12817.713
12611.082
12800.023
12593.887
16311.726
22458.011
16295.852
22449.175
12425.438
12410.027
12794.57
12588.208
12805.267
12598.194
16291.226
22448.222
16301.751
22455.025
12405.154
12414.596
13586.286
13490.903
13575.405
13479.757
13246.082
13008.715
13235.35
12997.869
12805.441
12598.369
12794.91
12588.543
16301.98
22455.316
16291.657
22448.807
12414.768
12405.482
14627.716
14618.688
14616.369
14622.489
14622.233
14615.509
14616.957
14624.846
14623.67
14613.722
14610.785
14616.655
14616.417
14610.018
14612.15
14621.055
14620.993
14611.983
14609.747
14616.073
14616.169
14610.044
14612.412
14621.494
14621.526
14612.489
14610.147
14616.337
14616.284
14610.011
14612.295
14621.376
14621.491
14612.66
14610.655
14617.325
14618.006
14612.826
14616.627
14627.489
16564.804
16215.092
16563.009
16213.408
15968.822
15741.413
15967.109
15739.724
16561.549
16211.937
16560.605
16211.03
15965.677
15738.323
15964.795
15737.465
15534.441
15348.384
15532.824
15346.726
15164.26
14980.405
15162.554
14978.751
15531.445
15345.363
15530.605
15344.54
15161.208
14977.419
15160.398
14976.57
16560.393
16210.821
16560.766
16211.18
15964.588
15737.26
15964.935
15737.597
16561.376
16211.821
16561.849
16212.217
15965.56
15738.205
15966.003
15738.638
15530.404
15344.34
15530.731
15344.661
15160.203
14976.377
15160.515
14976.732
15531.324
15345.24
15531.694
15345.657
15161.082
14977.286
15161.543
14977.688
14799.306
14620.292
14797.696
14618.676
14443.878
14284.5
14442.245
14282.799
14796.371
14617.355
14795.484
14616.53
14440.935
14281.491
14440.12
14280.687
14142.91
13998.927
14141.14
13997.183
13856.093
13714.48
13854.368
13712.689
14139.831
13995.868
14139.081
13995.127
13853.054
13711.376
13852.281
13710.617
14795.292
14616.338
14795.686
14616.673
14439.926
14280.492
14440.251
14280.808
14796.228
14617.2
14796.572
14617.539
14440.768
14281.313
14441.099
14281.686
14138.886
13994.931
14139.148
13995.186
13852.085
13710.421
13852.377
13710.707
14139.643
13995.672
14140.055
13996.033
13852.853
13711.174
13853.165
13711.525
16241.503
21681.929
17852.914
16237.297
21679.997
17851.319
16026.318
14763.671
16024.884
14762.342
16235.901
21679.113
17850.596
16237.813
21678.812
17850.354
12875.824
16024.239
12682.761
12489.642
12680.417
14761.25
12487.32
13073.28
12876.518
16024.028
13076.656
12879.879
12681.094
14760.558
12487.974
12684.396
12491.243
13747.44
12394.655
12392.756
12393.406
12971.215
12396.331
13745.768
12969.267
15928.432
21103.489
15926.969
21101.362
12424.482
12423.033
13744.797
12968.75
13744.203
12968.211
15926.333
21100.517
15926.147
21100.264
12422.539
12422.027
18066.394
16237.601
18257.711
18062.627
21678.55
18187.479
18314.087
18192.869
17850.141
18319.614
16235.378
18258.832
18063.703
21678.442
18264.238
18068.976
17850.054
16023.837
14760.383
16023.76
14760.814
16236.044
21678.385
17850.009
16238.865
21678.34
17849.973
15985.952
15574.764
16023.721
15087.987
15326.238
14761.28
15090.941
17805.275
17409.939
16023.69
17801.59
17406.371
17023.451
14761.253
16539.803
17019.971
16536.453
13744.039
17802.644
17407.399
17807.799
12968.442
17412.406
17020.959
16537.377
13744.398
17025.823
16542.027
15985.959
12969.148
15574.771
15925.955
15982.778
15571.719
21100.019
15326.245
15925.884
15090.948
15323.269
21099.923
15088.027
15983.643
15572.568
12422.191
15988.049
15576.808
15324.103
15088.818
15328.237
15092.849
12422.813
15668.156
16656.41
15662.904
16651.352
17423.873
17966.853
13744.788
17418.554
17961.323
15661.776
12969.119
16650.231
15665.32
16653.575
13745.193
17417.362
17960.092
17420.856
12969.478
17963.741
15925.851
18192.801
18319.54
21099.885
18187.258
15925.827
18313.859
18264.158
21099.852
18068.901
18258.603
18063.48
12422.786
18186.041
18312.521
18189.682
18316.261
18257.344
18062.272
12422.766
18260.985
18065.856
15664.966
16653.21
15660.631
16649.049
17420.493
16561.784
17963.382
17416.167
17958.899
16212.151
15660.699
16649.055
15664.655
16561.154
16652.744
17416.212
17958.958
16211.608
17420.106
17963.031
18189.332
15965.936
18315.921
18184.87
18311.378
15738.571
18260.659
18065.545
18256.241
15965.35
18061.217
18184.919
18311.566
15738
18188.998
18315.785
18256.382
16560.428
18061.34
18260.492
18065.337
16210.85
17807.725
17412.336
17802.427
16559.898
17407.194
17025.756
16541.961
16210.344
17020.762
16537.187
17801.25
15964.618
17406.046
17804.761
17409.452
15737.289
17019.661
16536.156
17022.989
15964.127
16539.37
15987.986
15576.744
15736.815
15983.462
15572.394
15328.174
15531.628
15092.784
15323.929
15088.652
15345.591
15982.497
15571.455
15985.554
15531.126
15574.389
15323.01
15087.778
15345.048
15325.881
15090.6
17804.466
15161.476
17409.175
17800.245
17405.098
14977.621
17022.729
16539.127
17018.766
15160.894
16535.32
17800.377
17405.247
14977.103
17804.283
17409.043
17018.912
15530.434
16535.445
17022.602
16538.964
15344.371
15985.327
15574.175
15981.716
15529.972
15570.72
15325.679
15090.405
15343.922
15322.316
15087.118
15981.834
15160.233
15570.852
15985.16
15574.05
14976.458
15322.454
15087.244
15325.572
15159.795
15090.283
14975.98
14350.771
16559.907
14120.511
14346.999
14116.844
16210.351
14837.711
14586.945
14840.599
16560.408
14589.821
14346.318
14116.184
16210.833
14349.084
14118.929
13891.607
15964.131
13669.618
13888.105
13666.187
15736.816
13466.069
13272.081
13462.701
15964.597
13268.811
13887.468
13665.525
15737.269
13890.126
13668.147
13462.019
16561.112
13268.185
13464.605
13270.703
16211.563
14840.606
14589.831
14837.747
16561.691
14586.977
14349.095
14118.941
16212.062
14346.349
14116.219
14838.518
15965.306
14587.742
14842.457
14591.677
15737.958
14347.091
14116.935
14350.914
15965.848
14120.657
13890.138
13668.158
15738.487
13887.503
13665.564
13464.616
15529.973
13270.709
13462.057
13268.227
15343.921
13888.198
13666.277
13891.755
15530.414
13669.767
13462.792
13268.898
15344.354
13466.219
13272.232
13076.774
15159.795
12879.998
13073.562
12876.807
14975.979
12684.516
12491.364
12681.383
15160.217
12488.269
13072.955
12876.218
14976.443
13075.402
12878.627
12680.813
15531.084
12487.715
12683.224
12490.111
15345.007
12396.453
12393.702
12393.153
15531.546
12395.127
13075.407
12878.637
15345.514
13072.997
12876.26
12683.234
15160.856
12490.116
12680.854
12487.756
14977.067
13073.65
12876.89
13076.926
15161.405
12880.15
12681.466
12488.348
14977.554
12684.668
12491.516
12395.132
14796.505
12393.195
12393.782
12396.608
14617.471
14842.393
14591.617
14838.362
14796.049
14587.587
14350.854
14120.598
14617.026
14346.939
14116.79
14837.513
14441.03
14586.756
14840.274
14589.512
14281.616
14346.138
14116.012
14348.788
14440.594
14118.645
13891.697
13669.709
14281.141
13888.056
13666.141
13466.162
14795.419
13272.174
13462.658
13268.771
14616.41
13887.303
13665.366
13889.853
14794.953
13667.883
13461.865
13268.036
14616.006
13464.35
13270.456
14840.088
14439.994
14589.336
14836.881
14586.153
14280.553
14348.62
14118.484
14345.561
14439.552
14115.464
14837.008
14586.288
14280.122
14839.988
14589.295
14345.695
14139.983
14115.592
14348.609
14118.428
13995.957
13889.698
13667.734
13886.78
14139.47
13664.866
13464.206
13270.313
13995.498
13461.384
13267.579
13886.902
13853.087
13665.029
13889.598
13667.678
13711.442
13461.585
13267.731
13464.193
13852.677
13270.265
13076.874
12880.098
13710.996
13073.53
12876.772
12684.617
14138.893
12491.462
12681.351
12488.24
13994.931
13072.817
12876.085
13075.167
14138.516
12878.401
12680.684
12487.587
13994.562
12683.007
12489.901
12396.553
13852.121
12393.677
12393.029
12394.924
13710.45
13075.029
12878.272
13072.379
13851.717
12875.664
12682.884
12489.78
13710.056
12680.283
12487.211
13072.528
14794.953
12875.813
13075.026
12878.313
14616.004
12680.433
12487.364
12682.896
14795.405
12489.813
12394.807
12392.672
14616.397
12392.838
12394.962
15663.385
14439.548
16651.382
15657.209
16645.337
14280.117
17418.679
17961.55
17412.308
14439.98
17954.917
15655.552
16643.636
14280.539
15658.996
16646.836
17410.474
14796.014
17953.014
17413.8
17956.465
14616.991
18187.484
18314.253
18180.808
14796.441
18307.416
18258.959
18063.815
14617.41
18252.238
18057.234
18178.899
14440.561
18305.363
18182.323
18308.862
14281.107
18250.242
18055.288
18253.629
14440.971
18058.603
15658.826
16646.643
14281.556
15654.991
16642.994
17413.592
14138.511
17956.244
17409.783
17952.279
13994.556
15655.919
16643.903
15661.038
14138.88
16648.817
17410.763
17953.29
13994.917
17415.938
17958.663
18182.097
13851.71
18308.629
18178.141
18304.579
13710.046
18253.393
18058.368
18249.449
13852.107
18054.49
18179.137
18305.707
13710.436
18184.522
18311.227
18250.51
14139.437
18055.506
18255.905
18060.768
13995.463
17802.783
17407.57
17796.329
14139.922
17401.281
17021.153
16537.547
13995.893
17015.028
16531.667
17794.412
13852.641
17399.402
17797.647
17402.527
13710.959
17013.204
16529.931
17016.249
13853.019
16532.857
15983.775
15572.696
13711.371
16238.742
15978.174
15567.287
21678.183
15324.239
15088.963
15318.948
17849.843
15083.791
16235.829
15976.516
15565.671
21678.101
15979.288
15568.318
15317.362
17849.777
15082.259
15319.946
15084.791
16023.573
17797.411
17402.293
17793.616
14761.144
17398.617
17016.02
16532.635
16023.515
17012.435
16529.175
17794.608
14761.091
17399.59
16235.091
17799.751
17404.585
21678.073
17013.367
16530.045
17018.219
17849.754
16534.68
16237.226
15979.079
15568.115
21678.065
15975.788
15564.956
15319.741
17849.748
15084.591
15316.658
15081.562
16023.494
15976.605
15565.755
15980.998
14760.572
15569.98
15317.436
15082.301
16023.489
15321.554
15086.313
15660.971
14760.066
16648.746
15655.735
16643.724
13745.09
17415.865
17958.588
17410.576
12968.993
17953.096
15654.695
16642.693
13744.612
15658.453
16646.239
17409.466
12968.183
17951.952
15925.699
17413.164
17955.8
21099.681
18184.444
15925.645
18311.149
18178.938
21099.605
18305.505
18255.828
18060.692
12422.355
18250.309
18055.306
18177.806
18304.243
18181.64
18308.166
12422
18249.113
18054.158
18252.929
18057.905
15658.463
16646.249
13744.173
15654.739
16642.722
17413.173
12968.166
17955.808
17409.494
17951.978
13743.747
15655.766
16643.735
15660.986
12968.168
16648.757
15925.625
17410.591
17953.109
21099.58
17415.879
15925.62
17958.607
18181.647
21099.572
18308.173
18177.83
18304.263
12421.984
18252.935
18057.911
18249.132
18054.174
18178.94
18305.505
12421.93
18184.452
18311.153
18250.306
18055.302
16237.212
18255.828
18060.681
21678.048
17799.675
17404.51
17794.403
17849.736
17399.386
16235.073
17018.145
16534.608
21678.051
17013.173
16529.855
17793.28
17849.737
17398.29
17796.953
17401.845
16023.48
17012.12
16528.87
17015.58
14760.059
16532.203
15980.92
15569.905
16023.481
15976.415
15565.567
15321.485
14760.561
15086.245
16235.793
15317.25
15082.115
21678.058
15975.491
15564.667
15978.659
17849.743
15567.703
16238.66
15316.367
15081.275
21678.076
15319.334
15084.187
17796.958
17849.759
17401.849
17793.302
17398.308
16023.486
17015.583
16532.206
17012.129
14761.066
16528.877
17794.403
17399.385
16023.501
17799.661
17404.493
17013.163
14761.08
16529.845
17018.125
16534.586
13743.742
15978.662
15567.705
15975.499
12968.55
15564.672
15319.336
15084.19
13744.164
15316.371
15081.278
15976.405
12968.929
15565.557
15925.617
15980.897
15569.879
21099.571
15317.238
15925.615
15082.104
15321.457
21099.567
15086.213
14838.687
14588.014
12422.24
14833.628
14582.978
14347.344
14117.177
14342.443
14112.401
12422.603
14832.126
14581.498
14834.6
14583.975
14341.004
14111.004
13744.59
14343.381
14113.365
13888.362
12968.933
13666.456
13883.772
13661.96
13745.032
13462.985
13269.071
13458.573
12968.939
13264.779
15925.62
13882.415
13660.601
21099.574
13884.699
15925.633
13662.855
13457.211
21099.59
13263.496
13459.44
13265.663
12422.607
14834.401
14583.778
14831.436
14580.824
14343.188
14113.176
12422.304
14340.345
14110.359
14832.155
14581.531
14836.075
14585.452
18798.128
14341.028
14111.022
14344.838
17161.544
14114.726
13884.515
13662.675
18790.808
13881.788
13659.993
13459.265
17155.963
13265.494
13456.622
13262.924
13882.429
13660.654
13885.97
13664.126
13457.304
13263.548
13460.756
13266.9
13073.846
12877.15
13069.636
12872.984
16098.727
12681.753
12488.691
12677.664
15098.839
12484.657
13068.386
12871.767
16093.168
13070.492
12873.851
12676.48
15093.384
12483.503
12678.575
12485.588
12393.851
12390.171
12389.028
12390.694
13070.327
12873.689
13067.833
12871.231
12678.417
12485.435
12675.958
12482.992
18789.894
13068.438
12871.816
13071.692
17154.465
12875.05
12676.525
12483.543
18793.516
12679.736
12486.715
12390.543
17156.834
12388.524
12389.071
12391.862
14836.006
14585.323
14831.976
14581.295
14344.787
14114.656
14340.872
14110.847
14831.158
14580.549
14834.003
14583.387
16091.249
14340.074
14110.092
14342.804
15092.189
14112.798
13885.9
13664.056
16093.914
13882.256
13660.484
13460.686
15095.029
13266.83
13457.135
13263.38
13881.525
13659.733
13884.144
13662.311
13456.365
13262.672
13458.908
13265.141
14834.006
14583.388
14831.159
14580.55
14342.805
14112.799
14340.074
14110.091
14831.963
14581.341
14835.972
14585.347
14340.839
14110.833
14344.731
14114.619
14333.568
13884.146
13662.313
13881.525
13642.832
13659.732
13458.91
13265.144
14328.137
13456.364
13262.669
13882.242
13637.45
13660.469
13885.863
13664.018
13457.12
13263.364
13460.606
13266.751
13071.624
12874.981
13068.273
12871.653
12679.668
12486.647
12676.364
12483.384
13003.692
13067.585
12870.984
13069.982
12543.84
12873.35
12675.714
12482.751
12999.135
12678.083
12485.103
12391.797
12539.905
12388.914
12388.285
12390.214
13069.984
12873.312
13067.582
12870.943
12678.046
12485.105
12675.673
12482.746
13068.256
12871.636
13071.585
12874.942
14327.028
12676.345
12483.365
12679.592
13636.432
12486.57
12390.216
12388.28
14329.584
12388.893
12391.754
15661.028
13638.746
16648.811
15655.856
16643.859
17415.922
17958.653
17410.71
17953.233
15654.849
16642.86
15658.642
16646.436
17409.642
17952.134
17413.364
17956.015
12998.193
18184.499
18311.202
18179.068
12538.651
18305.634
18255.877
18060.73
13000.298
18250.436
18055.429
18177.99
12540.63
18304.427
18181.859
18308.387
18249.296
18054.338
18253.148
18058.12
15658.675
16646.473
15654.972
16642.991
17413.401
17956.051
17409.784
17952.273
15656.063
16644.072
15661.374
16649.172
17410.951
17953.478
17416.313
17959.044
18181.895
18308.422
18178.121
18304.557
18793.243
18253.182
18058.154
18249.414
17156.588
18054.451
18179.306
18305.87
18789.166
18184.892
18311.594
18250.659
17153.815
18055.647
18256.264
18061.115
17799.708
17404.539
17794.527
17399.505
17018.17
16534.629
17013.279
16529.954
17793.461
17398.463
17797.161
17402.044
16093.687
17012.279
16529.022
17015.771
15094.819
16532.386
15980.936
15569.916
16090.654
15976.507
15565.653
15321.492
15091.644
15086.247
15317.331
15082.192
15975.635
15564.803
15978.826
15567.862
15316.497
15081.4
15319.492
15084.339
17797.193
17402.075
17793.569
17398.564
18789.097
17015.799
16532.415
17012.38
17154.437
16529.118
17794.737
17399.706
18794.608
17800.081
17404.897
17013.477
17158.399
16530.144
17018.513
16534.956
15978.849
15567.884
15975.721
15564.884
15319.518
15084.364
15316.58
15081.478
15976.686
15565.824
15981.247
15570.212
16091.768
15317.495
15082.349
15321.777
15092.099
15086.521
15661.497
16649.303
16095.838
15656.447
16644.476
17416.442
15096.181
17959.179
17411.356
17953.892
15655.644
16643.69
15659.753
16647.6
17410.497
17953.001
17414.565
17957.218
18185.036
18311.738
18179.736
18306.3
18256.407
18061.256
18251.082
18056.059
18178.854
18305.281
18183.049
18309.559
18250.124
18055.14
18254.288
18059.22
14329.387
15660.367
16648.244
15657.622
13638.562
16645.734
17415.223
17957.879
14326.523
17412.586
17955.098
15660.154
13635.963
16648.33
15667.27
16655.377
17415.316
17957.886
17422.728
17965.58
18183.7
18310.192
18180.923
18307.31
18254.9
18059.803
18252.097
18057.035
13000.124
18183.702
18310.216
18191.436
12540.464
18318.099
18254.915
18059.77
12997.754
18262.656
18067.345
17800.219
12538.238
17405.032
17795.145
17400.099
17018.643
16535.082
17013.85
16530.499
17794.243
17399.212
17798.216
17403.05
17012.997
16529.703
17016.73
16533.294
14326.943
15981.367
15570.328
15977.025
13636.336
15566.149
15321.891
15086.634
14331.09
15317.816
15082.662
15976.28
13640.513
15565.419
15979.683
15568.676
15317.097
15081.979
15320.275
15085.093
17798.77
17403.571
17796.044
17400.922
17017.222
16533.757
17014.623
16531.24
12998.096
17798.71
17403.515
17806.117
12538.92
17410.713
17017.124
16533.614
13001.518
17024.116
16540.319
15980.117
12541.776
15569.086
15977.726
15566.791
15320.667
15085.468
15318.407
15083.236
15979.977
15568.964
15986.359
15575.122
15320.52
15085.275
15326.536
15091.148
14836.004
14585.378
14832.047
14581.422
14344.761
14114.648
14340.917
14110.908
14831.275
14580.661
14834.148
14583.525
14340.181
14110.195
14342.936
14112.926
13885.892
13664.047
13882.315
13660.541
13460.635
13266.781
13457.191
13263.435
13881.624
13659.83
13884.267
13662.431
13456.459
13262.764
13459.025
13265.256
14834.172
14583.548
14831.351
14580.733
14342.958
14112.947
14340.25
14110.261
14832.198
14581.566
14836.273
14585.636
14341.055
14111.041
14345.006
14114.884
13884.289
13662.452
13881.689
13659.892
13459.046
13265.278
13456.52
13262.822
13882.443
13660.663
13886.119
13664.268
13457.309
13263.55
13460.85
13266.989
13071.614
12874.972
13068.326
12871.707
12679.623
12486.604
12676.417
12483.437
13067.674
12871.073
13070.094
12873.461
12675.802
12482.839
12678.193
12485.213
12391.787
12388.965
12388.373
12390.323
13070.115
12873.481
13067.73
12871.129
12678.213
12485.234
12675.856
12482.891
13068.437
12871.813
13071.817
12875.169
12676.519
12483.536
12679.815
12486.789
12390.345
12388.423
12389.062
12391.969
14836.383
14585.745
14832.497
14581.858
14345.114
14114.991
14341.341
14111.321
14831.83
14581.197
14834.874
14584.225
14340.701
14110.701
14343.613
14113.583
13886.226
13664.374
13882.718
13660.934
13460.956
13267.096
13457.577
13263.813
13882.117
13660.31
13884.905
13663.051
13456.929
13263.225
13459.63
13265.846
14835.235
14584.573
14833.041
14582.36
14343.948
14113.905
14341.819
14111.775
14835.022
14584.287
14840.763
14589.991
14343.688
14113.591
14349.238
13885.217
13663.352
13883.149
13459.921
13266.127
13884.913
13071.924
12875.277
13068.699
12872.072
12679.923
12486.898
12676.776
12483.79
13068.128
12871.518
13070.67
12874.022
12676.238
12483.266
12678.741
12485.746
12392.081
12389.316
12388.795
12390.847
13070.94
12874.279
18794.467
17158.271
18788.822
17154.187
16095.717
15096.068
16091.536
15091.884
18788.789
17153.474
18792.742
17156.139
16090.34
15091.353
16093.275
15094.438
14330.983
13640.411
14326.74
13636.147
13001.42
12541.681
12997.918
12538.752
14326.251
13635.708
14329.032
13638.228
12997.517
12538.013
12999.813
12540.169
18792.724
17156.12
18788.76
17153.448
16093.257
15094.424
16090.317
15091.332
18788.769
17154.14
18794.349
17158.164
16091.493
15091.845
16095.619
15095.979
14329.018
13638.216
14326.231
13635.691
12999.8
12540.158
12997.5
12537.998
14326.705
13636.114
14330.9
13640.335
14629.38
12997.887
12538.723
13001.35
12541.615
15669.318
16657.59
17425.083
17968.042
17964.563
18193.96
18320.67
18190.528
18317.14
18265.245
18069.92
18261.864
17808.685
17413.238
17026.597
16542.741
15988.7
15577.416
13569.257
13442.393
13567.409
13440.529
13332.22
13217.785
13330.341
13215.896
13566.1
13439.234
13565.403
13438.555
13329.059
13214.633
13328.405
13214.002
13102.462
12982.356
13100.571
12980.498
12870.157
12772.92
12868.342
12771.115
13099.332
12979.295
13098.73
12978.683
12867.183
12770.001
12866.566
12769.419
13565.207
13438.362
13565.445
13438.595
13328.219
13213.827
13328.45
13214.057
13565.904
13439.05
13566.292
13439.433
13328.898
13214.5
13329.279
13214.875
13098.56
12978.524
13098.791
12978.792
12866.415
12769.274
12866.721
12769.58
13099.228
12979.226
13099.599
12979.552
12867.147
12770
12867.431
12770.282
17104.994
15035.005
17103.251
15033.465
13786.965
12847.357
13785.549
12845.669
17102.563
15032.862
17102.361
15032.689
13785
12845.163
13784.846
12845.39
16211.581
21013.246
16902.313
16209.213
21008.821
16896.2
14840.061
13450.233
14832.396
13441.689
16208.58
21007.984
16896.051
16209.113
21009.858
16899.1
14832.189
13441.192
14837.368
13448.159
17102.161
15032.513
17102.083
15032.445
13784.685
12845.241
13784.623
12844.818
17102.054
15032.42
17102.028
15032.398
13784.6
12844.796
13784.58
12845.145
16208.925
21009.62
16899.423
16208.154
21007.441
16895.113
14837.562
13448.009
14831.469
13440.876
16208.126
21007.407
16895.6
16208.808
21009.473
16898.797
14831.806
13440.856
14837.106
13447.926
12681.623
12578.41
12679.802
12576.595
12456.066
12331.541
12454.352
12329.95
12678.738
12575.585
12678.228
12575.144
12453.369
12329.027
12452.921
12328.574
12424.65
12423.126
16710.141
23634.63
16708.32
23632.138
20351.234
17757.373
20349.315
17753.901
12422.311
12421.934
16707.444
23631.095
16707.12
23630.917
20348.698
17752.929
20348.676
17753.966
15752.552
20203.22
15749.054
20201.003
16135.968
13822.608
16134.452
13819.574
15748.632
20200.467
15750.647
20200.721
16133.971
13819.131
16134.018
13819.203
12678.088
12575.007
12678.359
12575.243
12452.783
12328.431
12453.052
12328.735
12678.773
12575.649
12679.089
12575.999
12453.488
12329.164
12453.799
12329.439
12421.785
12422.032
16706.912
23630.623
16707.088
23630.533
20348.408
17753.643
20348.243
17752.405
12422.404
12422.687
16707.445
23630.499
16707.751
23630.483
20348.121
17752.835
20348.203
17754.756
15750.443
20200.454
15748.304
20200.048
16133.797
13819.006
16133.633
13818.839
15748.284
20200.023
15750.365
20200.356
16133.673
13818.907
16133.78
13820.853
15711.041
20615.535
15702.14
20609.57
12416.575
12408.395
16487.732
14129.831
16482.955
14125.287
15701.607
20608.89
15708.773
20612.46
12407.955
12414.717
16482.431
14124.858
16485.359
14127.889
12682.521
12678.769
12678.407
12680.876
15708.593
20612.224
15701.258
20608.446
12414.577
12407.671
16485.165
14127.717
16482.079
14124.558
15701.236
20608.42
15708.504
20612.111
12407.654
12414.504
16482.057
14124.54
16485.076
14127.642
12680.717
12678.141
12678.124
12680.652
13566.204
13439.341
13565.724
13438.866
13329.183
13214.778
13328.716
13214.319
13565.189
13438.342
13564.846
13438.006
13328.2
13213.812
13327.87
13213.487
13099.503
12979.456
13099.053
12979.053
12867.337
12770.188
12866.981
12769.841
13098.556
12978.568
13098.238
12978.216
12866.505
12769.372
12866.122
12768.995
13564.835
13437.994
13565.174
13438.326
13327.859
13213.479
13328.186
13213.8
13565.686
13438.831
13566.131
13439.265
13328.68
13214.285
13329.107
13214.703
13098.227
12978.208
13098.543
12978.555
12866.116
12768.989
12866.495
12769.364
13099.02
12979.025
13099.43
12979.386
12866.954
12769.814
12867.27
12770.125
17101.886
15032.27
17101.824
15032.215
13784.462
12845.034
13784.412
12844.622
17101.803
15032.196
17101.797
15032.192
13784.395
12844.606
13784.391
12844.969
16208.667
21009.295
16899.167
16207.908
21007.127
16894.865
14837.342
13447.813
14831.255
13440.684
16207.888
21007.102
16895.358
16208.586
21009.188
16898.571
14831.597
13440.669
14836.911
13447.751
17101.796
15032.191
17101.793
15032.188
13784.39
12844.968
13784.387
12844.599
17101.798
15032.193
17101.81
15032.203
13784.392
12844.603
13784.401
12844.977
16208.585
21009.189
16899.083
16207.879
21007.092
16894.837
14837.27
13447.748
14831.231
13440.663
16207.885
21007.099
16895.356
16208.595
21009.2
16898.58
14831.595
13440.666
14836.919
13447.758
12678.995
12575.901
12678.619
12575.499
12453.695
12329.327
12453.302
12328.978
12678.156
12575.042
12677.82
12574.747
12452.821
12328.504
12452.531
12328.187
12422.568
12422.248
16707.579
23630.256
16707.228
23630.176
20347.989
17754.555
20347.833
17752.502
12421.833
12421.539
16706.818
23630.149
16706.582
23630.142
20347.81
17751.962
20347.901
17753.218
15750.207
20200.147
15748.07
20199.648
16133.546
13820.652
16133.328
13818.662
15748.056
20199.629
15750.144
20200.062
16133.312
13818.606
16133.421
13818.645
12677.817
12574.746
12678.151
12575.039
12452.529
12328.183
12452.852
12328.535
12678.592
12575.472
12678.934
12575.843
12453.313
12328.988
12453.639
12329.275
12421.534
12421.828
16706.573
23630.125
16706.81
23630.128
20347.887
17753.281
20347.791
17752.171
12422.223
12422.516
16707.196
23630.132
16707.511
23630.134
20347.798
17752.767
20347.892
17754.772
15750.137
20200.053
15748.043
20199.706
16133.413
13818.638
16133.354
13818.594
15748.047
20199.71
15750.142
20200.057
16133.416
13818.681
16133.533
13820.633
15708.368
20611.933
15701.037
20608.157
12414.398
12407.496
16484.933
14127.512
16481.847
14124.356
15701.022
20608.141
15708.303
20611.852
12407.483
12414.344
16481.832
14124.343
16484.866
14127.455
12680.53
12677.956
12677.945
12680.48
15708.297
20611.839
15701.013
20608.126
12414.341
12407.477
16484.857
14127.449
16481.821
14124.333
15701.016
20608.13
15708.309
20611.854
12407.48
12414.35
16481.824
14124.336
16484.868
14127.455
12680.474
12677.935
12677.938
12680.479
16561.757
16212.126
16561.23
16211.685
15965.913
15738.551
15965.428
15738.081
16560.564
16210.986
16560.067
16210.511
15964.755
15737.428
15964.294
15736.983
15531.612
15345.579
15531.211
15345.138
15161.469
14977.617
15160.988
14977.201
15530.575
15344.516
15530.142
15344.095
15160.382
14976.611
15159.972
14976.159
16560.105
16210.545
16560.626
16211.046
15964.324
15737.009
15964.808
15737.478
16561.367
16211.811
16562.024
16212.384
15965.552
15738.2
15966.164
15738.795
15530.168
15344.118
15530.623
15344.564
15159.993
14976.18
15160.428
14976.654
15531.324
15345.244
15531.848
15345.811
15161.093
14977.302
15161.698
14977.843
14796.505
14617.473
14796.15
14617.129
14441.031
14281.613
14440.697
14281.241
14795.575
14616.568
14795.135
14616.189
14440.151
14280.706
14439.735
14280.302
14139.976
13995.943
14139.565
13995.584
13853.065
13711.412
13852.756
13711.065
14139.041
13995.072
14138.691
13994.729
13852.253
13710.571
13851.874
13710.201
14795.155
14616.205
14795.616
14616.608
14439.748
14280.312
14440.187
14280.742
14796.247
14617.221
14796.726
14617.689
14440.785
14281.324
14441.242
14281.819
14138.699
13994.734
14139.075
13995.101
13851.877
13710.202
13852.28
13710.596
14139.644
13995.659
14140.174
13996.177
13852.826
13711.13
13853.288
16238.735
21678.179
17849.847
16235.927
21678.246
17849.901
16023.581
14761.155
16023.63
14761.201
16235.238
21678.279
17849.927
16237.386
21678.29
17849.937
16023.653
14760.719
16023.662
14760.227
13745.103
12968.622
13744.715
12968.279
15925.717
21099.698
15925.76
21099.756
12422.056
12422.091
13744.311
12968.681
13743.897
12968.694
15925.777
21099.775
15925.786
21099.787
12422.419
12422.377
16237.402
21678.312
17849.954
16235.27
21678.322
17849.963
16023.677
14760.241
16023.684
14760.748
16236.007
21678.351
17849.986
16238.896
21678.401
17850.028
16023.705
14761.267
16023.743
14761.303
13743.91
12968.706
13744.337
12969.091
15925.8
21099.808
15925.806
21099.814
12422.388
12422.756
13744.775
12969.105
13745.239
12969.518
15925.821
21099.831
15925.86
21099.884
12422.768
12422.799
16562.195
16212.552
16561.751
16212.191
15966.33
15738.96
15965.924
15738.568
15532.014
15345.975
15531.689
15345.609
16239.134
21678.717
17850.292
16236.392
21678.877
17850.421
16023.981
14761.524
16024.097
14761.629
16235.744
21678.959
17850.487
16237.918
21679.005
17850.526
16024.155
14761.181
16024.19
14760.713
13745.446
12969.715
13745.113
12969.424
15926.105
21100.207
15926.209
21100.347
12422.989
12423.072
13744.739
12969.083
13744.348
12968.347
15926.263
21100.419
12422.802
12422.152
16238.147
21679.298
17850.769
16236.159
21679.509
16024.41
18794.412
17158.226
18788.892
17154.257
16095.681
15096.039
16091.607
15091.957
18788.925
17153.604
18792.907
17156.29
16090.463
15091.474
16093.417
15094.574
14330.959
13640.393
14326.813
13636.22
13001.406
12541.67
12997.989
12538.824
14326.368
13635.821
14329.162
13638.355
12997.628
12538.123
12999.936
12540.291
18792.919
17156.301
18788.972
17153.644
16093.427
15094.584
16090.501
15091.507
18788.994
17154.348
18794.594
17158.392
16091.693
15092.035
16095.837
15096.185
14329.174
13638.369
14326.401
13635.853
12999.947
12540.303
12997.656
12538.148
14326.889
13636.713
14331.1
13640.95
12998.442
12538.887
13001.92
12541.796
18794.858
17158.633
18789.431
17154.748
16096.066
15096.402
16092.069
15092.388
18789.508
17154.134
18793.515
17156.849
16090.963
15091.943
16093.944
15095.068
14331.306
13641.147
14327.224
13637.032
13002.108
12541.978
12998.746
12539.183
14326.814
13636.246
14329.632
13638.802
12998.033
12538.514
13000.362
12540.701
18793.762
17157.076
18789.998
17154.583
16094.156
15095.27
16091.382
15092.334
14329.825
13638.99
14327.185
13636.599
13000.541
12540.877
12998.368
12538.835
13566.166
13439.298
13565.783
13438.918
13329.14
13214.737
13328.764
13214.368
13565.298
13438.443
13564.978
13438.127
13328.294
13213.903
13327.981
13213.593
13099.469
12979.432
13099.106
12979.114
12867.324
12770.188
12867.052
12769.923
13098.648
12978.665
13098.343
12978.325
12866.61
12769.485
12866.237
12769.117
13564.977
13438.126
13565.32
13438.46
13327.982
13213.597
13328.311
13213.919
13565.842
13438.974
13328.814
13214.412
13098.345
12978.329
13098.662
12978.678
12866.243
12769.125
12866.624
12769.501
13099.144
12979.151
12979.533
12867.086
12769.954
12867.421
12770.282
17101.896
15032.277
17101.939
15032.312
13784.465
12845.035
13784.495
12844.697
17101.953
15032.322
17101.962
15032.33
13784.505
12844.705
13784.512
12845.077
16208.669
21009.291
16899.169
16208.001
21007.243
16894.963
14837.35
13447.827
14831.347
13440.775
16208.011
21007.254
16895.485
16208.72
21009.353
16898.707
14831.715
13440.784
14837.037
13447.872
17101.978
15032.345
17101.983
15032.348
13784.525
12845.089
13784.527
12844.725
17101.996
15032.359
17102.038
15032.395
13784.537
12844.734
13784.569
12845.129
16208.734
21009.371
16899.233
16208.035
21007.284
16894.996
14837.407
13447.881
14831.376
13440.802
16208.046
21007.297
16895.519
16208.783
21009.434
16898.77
14831.745
13440.811
14837.091
13447.919
12679.005
12575.92
12678.709
12575.595
12453.72
12329.355
12453.436
12329.11
12678.277
12575.169
12677.951
12574.883
12452.984
12328.665
12452.669
12328.321
12422.593
12422.338
16707.608
23630.241
16707.337
23630.296
20347.972
17754.829
20347.91
17752.846
12421.953
12421.666
16706.965
23630.32
16706.736
23630.321
20347.928
17752.258
20348.021
17753.369
15750.225
20200.148
15748.168
20199.843
16133.594
13820.675
16133.503
13818.738
15748.179
20199.855
15750.274
20200.204
16133.452
13818.658
16133.511
13818.702
12677.96
12574.894
12678.295
12575.188
12452.679
12328.33
12453.002
12328.683
12678.739
12575.624
12679.095
12421.676
12421.969
16706.748
23630.336
16706.982
23630.336
20348.039
17753.307
20347.942
17752.127
15750.287
20200.219
15748.199
20199.879
16133.522
13818.711
16133.468
13818.671
15748.208
20199.89
15750.315
20200.254
16133.536
13818.762
16133.667
13820.727
15708.403
20611.984
15701.159
20608.332
12414.419
12407.587
16484.971
14127.542
16481.983
14124.467
15701.172
20608.35
15708.459
20612.067
12407.596
12414.462
16481.998
14124.48
16485.038
14127.599
12680.553
12678.048
12678.058
12680.599
15708.471
20612.083
15701.193
20608.378
12414.471
12407.613
16485.051
14127.61
16482.021
14124.499
15701.204
20608.391
15708.511
20612.132
12407.621
12414.505
16482.031
14124.508
16485.087
14127.639
12680.61
12678.075
12678.083
12680.634
17102.299
15032.625
17102.409
15032.719
13784.782
12845.328
13784.865
12845.038
17102.467
15032.769
13784.909
12845.078
16209.035
21009.751
16899.541
16208.427
21007.788
16895.403
14837.681
13448.132
14831.737
13441.134
16208.477
21007.848
16895.961
16209.204
21009.971
16899.203
14832.135
13441.167
14837.473
13448.27
15750.597
20200.603
16133.941
15708.774
20612.48
15701.591
20608.911
12414.707
12407.923
16485.372
14127.887
16482.448
14124.864
12407.953
12414.833
12680.86
12678.398
26524.13
26520.673
26522.943
26528.399
20860.542
20850.144
15052.815
15050.401
20849.685
20865.427
15050.481
15054.836
26529.139
26523.736
26521.639
26525.213
20866.033
20850.441
15055.255
15050.983
20850.889
20861.267
15050.898
15053.326
26525.033
26521.158
26523.182
26528.494
20861.293
20850.969
15053.341
15050.918
20850.498
20866.08
15050.984
15055.277
26528.125
26522.78
26520.943
26524.817
20865.971
20850.356
15055.186
15050.873
20850.807
20861.027
15050.796
15053.177
26524.675
26521.078
26523.317
26528.738
20860.937
20850.63
15053.1
15050.699
20850.137
20865.747
15050.751
15055.034
26521.385
26514.187
26511.459
26514.932
20859.765
20842.907
15050.881
15045.59
20842.817
20853.014
15045.112
15047.497
26514.331
26510.436
26512.226
26517.509
20852.691
20842.401
15047.273
15044.791
20841.909
20857.578
15044.839
15049.168
26517.277
26511.752
26509.757
26513.741
20857.276
20841.538
15048.985
15044.611
20842.042
20852.396
15044.528
15046.95
26513.979
26510.414
26512.551
26518.066
20852.34
20841.983
15046.941
15044.515
20841.572
20857.236
15044.625
15048.962
26518.133
26512.635
26510.508
26514.073
20857.28
20841.622
15048.996
15044.669
20842.033
20852.401
15044.564
15046.989
26513.883
26510.062
20852.397
20842.072
15046.999
15044.575
20841.596
15044.649
15048.957
16999.061
16978.901
22176.372
22128.223
16973.133
16986.039
22113.623
22141.945
17951.951
17924.604
17335.52
17985.539
17331.521
17970.377
17918.114
17933.996
17330.866
17967.713
17333.854
17976.652
16986.075
16973.217
22143.011
22116.973
16978.567
16997.721
22132.865
22180.84
17934.464
17918.998
17333.652
17976.725
17330.35
17967.438
17927.319
17953.594
17330.367
17971.304
17333.232
17985.015
16996.159
16974.609
22178.006
22126.844
16967.537
16979.444
22108.851
22133.901
17951.15
17922.26
17330.872
17982.514
17325.426
17966.212
17912.257
17926.951
17323.77
17960.662
17326.343
17969.204
16978.803
16965.573
22132.003
22103.309
16971.134
16991.15
22117.678
22165.643
17925.806
17909.698
17325.931
17968.452
17322.66
17959.287
17916.075
17943.286
17323.159
17961.836
17327.051
17976.874
16991.058
16970.912
22165.348
22117.164
16965.219
16978.311
22102.685
22131.079
17943.075
17915.692
17326.908
17976.717
17322.865
17961.514
17909.202
17925.077
17322.214
17958.795
17325.276
17967.736
16978.71
16966.44
22132.407
22106.689
16972.738
16993.184
22123.349
22172.682
17925.756
17910.54
17325.267
17968.025
17322.184
17958.971
17919.482
17946.915
17322.8
17963.459
17326.786
17978.318
16993.222
16972.831
22172.74
22123.468
16966.561
16978.877
22106.837
22132.575
17946.966
17919.581
17326.834
17978.37
17322.902
17963.56
17910.663
17925.897
17322.317
17959.1
17325.416
17968.17
16978.519
16965.477
22131.254
22102.862
16971.208
16991.405
22117.318
22165.495
17925.222
17908.718
17325.435
17967.89
17322.371
17958.313
17916.456
17943.202
17323.012
17962.288
17327.057
17976.854
16991.562
16971.63
22165.765
22117.856
16966.178
16979.605
22103.565
22132.145
17943.431
17916.219
17327.274
17977.09
17323.432
17962.043
17909.877
17925.945
17322.918
17959.473
17326.114
17968.611
16980.597
16969.232
22133.896
22108.622
16976.947
16999.288
22126.295
22177.526
17926.972
17912.173
17326.426
17969.252
17323.666
17960.596
17922.001
17950.88
17325.045
17965.956
17330.531
17982.241
16284.536
22315.95
18889.773
17311.353
16284.565
22315.973
16282.919
22316.075
18889.791
17311.369
18890.197
17311.917
16283.718
22316.759
16286.487
22317.65
18890.953
17312.689
18891.715
17313.48
16317.883
22466.407
14752.968
16720.696
14748.039
16717.415
13302.012
13297.52
15458.198
17951.729
15455.119
17947.151
14747.999
16717.108
14752.795
16719.878
13297.485
13301.858
15455.082
17947.106
15458.055
17951.56
13932.049
13930.442
13930.409
13931.923
15010.385
18575.075
15010.356
18575.041
12650.914
12650.89
15365.792
15127.873
19554.997
15365.762
15125.416
19554.952
15010.319
18574.996
15010.25
18574.908
12650.515
12650.457
15365.19
15125.378
19554.904
15365.123
15127.133
19554.825
14752.628
16719.682
14747.579
16716.619
13301.707
13297.111
15457.892
17951.363
15454.674
17946.616
14747.094
16716.319
14751.069
16718.526
13296.68
13300.326
15454.194
17946.046
15456.288
17949.484
13931.776
13930.048
13929.624
13930.361
15010.108
18574.72
15009.958
18574.532
12650.338
12650.217
15364.982
15127.011
19554.654
15364.839
15125.057
19554.472
15009.526
18573.981
15008.618
18572.861
12650.205
12649.454
15364.955
15124.675
19553.958
15364.059
15126.213
19552.829
)
;
}
procBoundary2to0
{
type processor;
value nonuniform List<scalar>
52
(
2159.4439
436.4293
511.11915
4073.876
2151.2785
392.50612
392.50612
439.81734
439.81734
439.81734
439.81734
505.52502
769.10775
394.2044
394.2044
394.2044
394.2044
349.50723
349.50723
349.50723
535.47949
536.78308
349.17274
349.17274
320.95269
320.95269
535.47949
536.78308
320.78869
320.78869
320.78869
389.02099
389.87517
304.81275
378.62529
379.66648
368.73453
286.96203
368.01096
368.60699
314.85654
289.01236
356.25127
356.57702
337.15226
334.90189
334.90189
337.15226
345.42658
345.88201
337.58386
337.0322
)
;
}
procBoundary2to3
{
type processor;
value nonuniform List<scalar>
1155
(
4574.9058
3860.5982
810.40591
1255.1279
9488.4876
7153.1628
1769.828
658.71565
558.83178
708.32465
1985.9922
655.09548
2020.6947
4676.8963
18617.644
12103.658
4141.9938
1487.9229
1351.995
3248.0904
2926.3401
1130.2469
558.83178
558.83178
558.83178
489.66468
489.66468
489.66468
1787.7149
1795.7749
4713.7609
530.04806
675.12355
2175.2859
3601.0053
6878.5165
13202.349
31866.144
19515.856
7619.0625
3980.5926
3248.0904
3828.0159
8807.9316
8663.9041
3248.0904
2926.3401
1130.2469
1130.2469
998.55941
421.73178
353.90559
421.73178
421.73178
421.73178
846.79842
719.84993
4903.1065
4428.6391
4554.3174
4447.855
8473.0637
511.58531
658.25946
2244.4596
4130.0285
7553.2768
12700.761
18637.554
29042.062
45932.285
10996.05
34390.629
325.01664
8663.9041
9364.4433
14793.516
8974.9721
8807.9316
8663.9041
8663.9041
8210.1894
16174.94
15236.801
8072.6417
8210.1894
6906.8624
2526.6615
5812.7653
2395.6159
2395.6159
1878.097
2051.1549
4903.1065
4903.1065
4428.6391
514.34399
436.43607
615.14244
626.5151
514.34399
1419.4686
1605.7974
1060.4433
1227.5698
1893.978
1582.2216
1355.8162
8147.9872
9606.6637
9162.1101
9742.8767
9060.8437
11724.527
485.40961
690.86124
2219.7392
4083.8246
4762.2679
6345.3329
10562.314
15911.821
19194.54
23546.44
27650.508
41804.356
64743.36
52075.54
324.38766
34390.629
14793.516
14793.516
14286.792
14805.07
14074.661
14354.634
15454.326
15454.326
15236.801
16174.94
15236.801
15980.679
31690.688
18523.495
16895.097
15980.679
17329.968
16895.097
17329.968
15980.679
18168.787
19854.694
5088.8923
5160.8776
18983.47
17643.076
4673.021
16599.4
4830.4263
17643.076
4744.3735
4830.4263
4830.4263
3519.5033
3684.2364
4137.3193
4267.8505
9060.8437
9458.4783
8699.3642
9037.2017
8147.9872
8147.9872
8147.9872
446.47591
650.95669
648.28253
615.14244
944.47
751.62681
2355.0458
2545.8382
2921.0007
3104.3018
2056.0169
1893.978
1893.978
1582.2216
1355.8162
1355.8162
14565.991
13996.932
14504.402
13810.101
14256.549
13623.561
13956.276
13131.592
11724.527
11724.527
447.21134
702.96928
674.61625
2040.1141
5181.771
4621.3434
7251.4924
7193.0597
8235.4882
11482.263
16860.24
21466.167
25540.728
29762.651
60391.441
99613.42
56635.294
408.81284
37699.009
31550.906
31550.906
31916.347
32576.053
33197.995
30894.049
30830.083
30981.491
30294.311
31690.688
31690.688
27673.32
28296.237
27673.32
28959.771
29617.134
27146.348
26853.73
27720.564
33971.59
17643.076
16599.4
25671.04
24935.16
14792.519
14792.519
15593.36
10581.712
11645.856
12699.222
13751.157
13041.692
13131.592
12816.538
13531.471
13078.087
12229.522
11768.92
12454.125
11844.134
11844.134
11175.709
650.95669
650.95669
648.28253
825.23966
973.04579
1188.8382
1487.4714
6375.5326
7412.6742
8445.6152
9504.6799
5359.1124
4466.4901
11992.575
4466.4901
3436.7823
1948.6522
33849.986
34473.663
35097.165
35730.714
36366.094
36824.546
37229.262
37352.75
408.03034
645.62958
613.88581
1730.4865
4929.888
9605.376
10055.102
4804.6323
10164.646
9468.2598
10126.187
9468.2598
8973.0869
9208.5143
8100.8353
12373.845
11165.48
10340.519
19355.814
16507.989
22722.968
25611.178
22309.198
56635.294
27220.815
35677.537
35857.046
80378.674
108957.84
49154.204
432.63731
475.74884
578.67945
69290.42
32941.928
65389.2
65389.2
66080.77
66996.149
67808.498
64481.388
64639.848
64783.69
63839.306
65765.843
65765.843
59794.761
60919.105
59794.761
84309.859
61926.397
62883.99
58700.775
41774.847
100631.03
106304.78
25299.611
25671.04
23915.101
23757.795
99040.633
97325.172
21513.741
21664.577
21386.1
21386.1
22711.739
22504.63
16973.054
16890.216
18084.036
17988.706
19209.311
19128.774
20367.418
20235.932
36366.094
36824.546
37984.697
37229.262
37352.75
37352.75
38414.134
38692.303
37907.607
37016.064
34669.115
35951.994
32897.042
32897.042
707.63459
798.71373
993.45206
975.84644
1890.2436
1058.3717
1487.4714
1890.2436
1487.4714
12682.047
12713.451
13775.859
13727.09
14820.748
14779.829
15901.315
15820.278
11680.726
11992.575
10732.336
11992.575
10405.327
10732.336
8998.3756
9272.0772
5367.2913
3758.4638
68641.816
69427.019
70240.564
70963.12
372.34026
540.27553
504.77125
1358.5815
1040.0767
2026.4602
4126.6069
4374.9462
9720.4102
9425.089
10055.102
9605.376
10164.646
9468.2598
14877.349
14193.127
14211.601
14311.923
14426.35
12821.465
12026.756
12975.675
12155.03
11077.72
17119.66
23836.879
19877.505
18709.428
24536.606
26819.608
30721.826
49154.204
33208.063
32519.291
36835.227
43300.365
17954.963
22182.518
17001.961
578.67945
460.78073
578.67945
578.67945
85432.023
61680.918
90480.416
90480.416
92061.683
92876.057
93816.99
89489.801
88143.675
86744.852
85839.706
87551.58
87551.58
83529.12
84309.859
84309.859
84281.32
84993.563
82403.429
60129.912
110577.08
140153.68
134074.67
96514.349
99040.633
92127.876
94167.236
137563.63
140807.59
83931.22
86504.873
85980.473
85980.473
87853.398
89875.347
65680.716
68040.883
70503.92
72777.266
75171.841
77378.149
79627.324
81702.916
110665.48
72414.984
70963.12
72920.256
73318.194
73318.194
73254.422
70240.564
70963.12
72995.695
73626.09
71441.656
69428.567
64079.748
66987.525
60735.473
60735.473
783.11512
783.11512
1037.0393
1037.0393
1146.6572
1348.5475
1486.1788
1890.2436
1890.2436
2726.5195
3187.7571
46369.771
48849.668
51321.931
53601.345
56035.415
58384.41
60878.18
63238.087
43842.666
42556.367
38325.273
42556.367
35146.95
38325.273
19352.969
31557.279
13345.356
8791.9847
107936.72
104961.38
102074.85
98796.12
95477.976
94666.877
95499.676
802.47159
1356.4427
1654.7328
901.56571
651.10654
1093.5626
2985.3363
6633.2569
6258.7017
3426.3481
7311.3267
2026.4602
2026.4602
2421.0931
4787.4585
5467.4361
9720.4102
9135.8045
15759.985
15017.306
9044.4114
15255.278
15885.396
9720.4102
9425.089
15503.429
14948.281
14787.447
15543.008
14659.093
15276.461
15134.917
14311.923
35492.598
35788.86
36430.496
36669.843
25948.839
23829.368
21984.246
22799.95
21245.537
20133.282
24000.664
30135.021
26048.668
26339.344
30408.372
31155.993
32317.641
39107.112
17001.961
34916.981
38420.54
17334.639
17986.457
14621.799
93997.313
14118.999
14118.999
14351.466
14592.225
14843.004
13890.13
13663.062
13457.889
13264.147
13661.304
13661.304
12485.979
12678.985
12678.985
12872.361
13069.01
12391.068
81681.912
120901.23
17306.162
18884.007
137066.1
137563.63
134924.19
136217.79
16561.171
16560.811
127500.19
129280.23
129335.28
129335.28
132243.83
133716.95
112477.91
115036.62
117443.21
119646.78
121762.29
123790.61
125697.05
110665.48
110665.48
97734.628
98529.238
99964.183
99964.183
99316.164
95499.676
95810.425
96882.419
99682.122
99464.368
18066.681
99433.761
98680.554
96075.189
97575.52
94324.127
17421.718
94324.127
901.56571
1264.3174
1388.7337
1388.7337
1805.6987
2572.5356
2216.7565
2216.7565
2784.0577
5584.7235
4640.053
4481.1227
4481.1227
6173.8377
82689.351
86775.511
90601.245
78723.803
75087.769
69594.799
75087.769
65198.88
69594.799
31212.627
64879.676
59283.67
50551.924
38450.263
107936.72
104961.38
102074.85
98796.12
95477.976
95477.976
15093.402
15328.809
1356.4427
1654.7328
1093.5626
6633.2569
6258.7017
7311.3267
7311.3267
7798.8416
12355.031
13343.297
3850.5488
4249.3104
4249.3104
4787.4585
5467.4361
15759.985
25993.727
15017.306
15532.862
26905.844
15255.278
15885.396
22440.786
25157.508
14998.857
15532.862
15597.912
14936.696
31702.891
32762.075
34601.543
33656.033
36026.345
35460.711
36624.341
36669.843
39475.217
38924.599
41043.076
35786.779
36821.749
32970.938
31565.486
30602.984
31013.588
30175.062
30611.205
30019.031
39627.247
32307.309
30898.461
33763.891
31448.988
38241.143
37772.37
33897.356
13301.409
14752.252
16719.919
15665.752
16279.919
22309.018
16211.573
16561.171
15737.986
15965.326
14978.005
15161.455
15161.863
15161.863
15345.051
15531.121
13853.429
13996.322
14140.322
14281.97
14441.397
14617.847
14796.887
13711.58
13711.58
16540.025
17023.707
17805.561
17410.228
15328.809
15575.041
15986.184
18262.086
18066.681
18066.681
18317.273
18190.738
17964.716
17421.718
17421.718
16654.368
2021.7616
1805.6987
3352.28
2572.5356
3489.8514
4039.9851
5217.2793
5738.4641
8330.746
18797.992
25978.055
31683.72
26737.582
26737.582
12770.466
12867.597
12979.699
12679.292
12576.007
12453.467
12576.007
12329.141
12453.467
54616.257
103078.18
12422.371
87362.259
67802.838
13566.323
13439.442
13329.271
13214.857
13099.578
13099.578
2164.6121
2566.8741
2941.7685
3320.4031
11015.046
10939.838
10672.635
10574.081
11445.707
11589.726
11589.726
12355.031
19221.153
13343.297
20592.064
7211.7324
13022.117
8243.1762
8243.1762
9327.4518
9690.5021
10165.312
25993.727
26905.844
22440.786
25157.508
28784.477
27819.15
29654.443
30678.019
32092.741
32872.823
33913.37
33331.997
35657.404
34798.304
36183.486
36821.749
12506.752
12995.103
12253.483
34229.714
12976.319
38896.998
40800.828
43099.454
42423.112
43465.533
44200.851
38891.931
12650.167
34190.645
37515.169
37017.84
39230.364
13931.354
17950.875
15457.395
3046.3356
4861.3295
3352.28
9681.5746
9776.2892
3352.28
4264.4407
5170.3035
7006.0781
11408.945
5738.4641
5738.4641
11799.668
8330.746
31683.72
31683.72
79445.539
79445.539
16707.381
23630.361
20347.963
17752.66
3888.5908
4751.213
5720.1969
9479.0774
10817.427
15907.082
16652.685
14512.921
15193.807
17420.934
18272.942
19221.153
20592.064
13022.117
13363.947
13022.117
14149.009
14049.632
13953.19
14149.009
11423.398
14924.916
24870.694
15969.883
25764.973
14073.108
28491.235
29056.744
30011.022
24786.04
28213.14
30391.177
29741.014
30706.429
31284.203
13577.881
13634.304
13688.326
13754.814
13307.575
13453.687
13252.16
12976.319
16179.738
22012.432
17817.574
14488.84
15610.422
13395.615
12158.809
15364.863
15009.475
18574.075
15126.799
19553.746
6030.8848
10371.942
9681.5746
9681.5746
9776.2892
5864.5212
7256.8849
8169.9707
27420.482
15437.95
15437.95
11799.668
20917.942
20857.202
20857.202
26511.958
26511.958
6573.1785
7770.2639
8419.5381
9048.6254
9479.0774
9479.0774
10817.427
25207.019
26171.612
23206.203
24213.743
27122.248
27905.932
28613.767
29403.068
21943.049
20891.553
18223.031
23879.866
22900.566
23879.866
17542.144
26616.169
24870.694
25603.001
25764.973
19730.115
12594.642
12800.787
29016.88
27181.698
12410.776
13241.61
13003.986
13485.815
13581.539
8558.7753
12575.342
11352.839
20066.962
18337.328
14682.1
18602.623
9546.8585
11839.589
18246.645
16701.275
15049.191
32585.341
32585.341
26407.238
16701.275
33172.414
11633.631
12406.179
13446.453
14463.214
23253.083
14463.214
16142.641
27211.007
27800.035
22286.676
25986.217
26600.765
28368.135
28403.86
28267.315
28402.05
24650.75
23635.477
20891.553
26724.815
25558.567
25073.16
26616.169
26616.169
25603.001
25603.001
25720.017
27719.408
22450.457
16296.838
14625.409
23908.527
22032.217
26687.991
18337.328
24040.179
25892.643
23843.802
20520.657
23253.229
26972.237
25681.266
13820.947
13820.947
37060.927
25681.266
16133.896
17557.873
22266.74
23253.083
23253.083
24552.645
25786.906
13637.394
14328.048
24895.572
12539.904
12999.11
15093.257
16092.994
17155.734
18790.508
12422.323
15926.298
23635.477
26188.556
13744.537
12968.525
25834.727
25834.727
14760.915
14760.915
16024.562
26834.165
26225.771
28636.738
27893.418
12415.014
24040.179
15701.629
29253.98
15708.933
28160.06
28421.325
12678.431
15748.59
20200.362
15748.59
28531.649
21061.807
26223.408
26060.066
12845.465
26060.066
26289.279
26274.891
16237.325
15926.298
21100.461
17850.942
17850.942
21680.058
29657.302
14838.037
13448.46
15701.629
20608.962
14124.901
16482.492
30727.674
25551.884
12845.465
12845.465
13784.933
15032.796
17102.499
16899.942
21010.246
16209.421
)
;
}
procBoundary2to4
{
type processor;
value nonuniform List<scalar>
468
(
495.90415
420.38909
733.20371
355.22325
323.96024
420.38909
733.20371
621.7687
1084.9113
323.96024
323.96024
437.43471
508.54217
621.7687
621.7687
621.7687
1084.9113
1084.9113
1287.4237
488.72203
321.59623
321.59623
321.59623
444.08335
622.1955
622.1955
622.1955
961.17049
764.50925
1368.476
1616.1611
1616.1611
1633.5712
1955.5953
2188.2753
356.89699
452.6843
721.31948
688.97775
406.90441
335.57236
629.03007
645.18951
629.03007
645.18951
645.18951
842.76548
990.69564
1199.8554
1958.5433
3423.9797
3423.9797
3423.9797
3520.4365
4564.9501
5681.3252
335.57236
346.09523
411.65535
667.88493
622.82559
1756.0932
430.96602
477.8416
692.9084
692.9084
787.5139
998.36442
1028.33
1090.23
1512.7509
3692.0344
5314.31
8981.795
9509.301
8981.795
9509.301
9494.1473
10070.989
10735.608
11081.399
12258.431
12319.603
337.13821
373.82623
544.52815
503.73993
1378.1216
1051.4994
4110.4747
4359.1581
456.63022
578.80291
784.95981
784.95981
1048.2101
1143.2651
1362.8177
1508.9917
1895.3294
3117.7593
2663.0088
8576.8204
13707.849
32097.784
31449.295
19662.39
32097.784
32319.848
33890.679
36311.24
39774.878
43013.177
45892.576
815.39652
659.02512
2986.2021
3420.528
2425.5462
2024.2619
8953.4479
8865.5205
9669.5659
9394.7045
2986.2021
2986.2021
8865.5205
15396.326
14848.274
897.57467
897.57467
1396.5488
1268.4975
1982.9488
2257.8261
5176.6003
2572.0167
4226.6059
5493.6826
39206.49
51986.435
31449.295
59795.447
54818.176
66471.461
59795.447
60080.691
61150.392
66588.941
71181.179
75371.54
79794.12
1350.3406
1654.5651
1094.3736
7643.8544
7283.5542
4794.2785
5458.4945
3831.2241
4224.4661
15695.809
14961.815
15194.742
14934.024
15486.912
14848.274
15515.564
6647.6471
7283.5542
6274.127
5458.4945
7643.8544
7643.8544
7283.5542
7283.5542
15194.742
15667.328
31960.024
30957.162
33158.013
1982.9488
1844.3003
1982.9488
1982.9488
2623.5657
3397.3545
3578.7311
3814.3654
14751.895
28218.463
63716.69
81486.725
54818.176
12426.659
16712.999
99180.315
12426.659
12427.023
12427.198
12333.575
12458.039
12580.325
12683.471
2547.5226
2149.0551
3299.3397
2921.78
9260.7971
10103.31
9636.375
7162.8336
8198.1678
26092.178
27026.485
25255.439
28961.609
27966.921
30957.162
29888.053
10903.538
10831.36
11329.344
10103.31
10577.564
10078.543
10462.037
13176.275
12207.472
11329.344
11464.474
22414.033
25255.439
33158.013
3003.6733
4794.222
6012.6259
3397.3545
3397.3545
3397.3545
5281.2149
6026.5748
4351.389
5359.06
7003.9489
8445.8663
10346.257
30446.633
67325.975
17759.981
20355.632
16712.999
23639.144
3844.9273
5668.6213
4711.1756
16071.768
15015.447
11375.375
14078.805
13355.326
13340.942
14038.48
14093.802
28774.882
29456.25
28405.72
30984.355
30218.451
32194.607
31448.44
15835.764
16590.413
17317.021
14078.805
14427.385
13979.226
15116.969
20524.794
19132.6
17317.021
18175.381
30155.693
24821.108
28405.72
13601.644
6012.6259
9716.0386
10101.717
11310.99
11559.368
6026.5748
7444.9835
9716.0386
8240.4657
9689.3577
14441.738
11668.572
20561.11
25112.54
20860.419
26523.966
6574.4546
7729.323
9728.0286
11126.669
8971.8602
8389.6614
25950.875
17620.914
25063.582
19803.577
18560.997
22168.992
23141.261
24153.629
12615.974
12822.748
12430.195
13264.608
13026.217
13605.245
13509.633
25087.535
26064.46
27051.473
22318.387
23069.594
22183.872
24090.773
29462.272
28617.108
27051.473
27862.875
29311.197
27410.27
12430.195
8519.4915
12752.752
11559.368
14550.104
19334.754
21521.203
22049.48
9689.3577
12062.452
14550.104
18195.147
20552.518
30142.287
25701.437
16306.764
32009.704
15052.734
11667.88
14791.778
16471.017
13505.227
12448.348
22318.387
26796.426
25647.665
25888.487
27526.553
27035.196
21248.173
24822.297
25305.845
25823.606
26981.354
27570.951
28356.388
24807.878
25793.16
24789.849
26396.418
28562.097
28378.323
28356.388
28419.449
22457.212
16301.774
14749.705
23919.949
22049.48
25134.404
18076.53
25084.252
26456.862
26941.473
20552.518
23101.771
25134.404
26437.89
27705.296
13823.919
36356.155
25174.136
16139.557
17679.458
24879.058
26096.458
23593.262
22327.238
24807.878
25800.538
16029.356
14766.507
26487.587
26472.107
23965.037
12426.689
12973.407
13750.13
13640.64
14331.474
15097.477
16244.626
12542.503
16241.664
13002.19
18796.045
17160.697
15097.477
16097.565
26053.427
27461.969
26941.473
28066.407
22962.666
12412.487
13446.113
13453.265
27705.296
27533.361
28066.407
12685.392
14133.025
20207.756
15756.188
28201.923
21109.349
26382.725
26427.177
26084.468
25959.25
16244.626
17856.254
21685.949
21107.747
15931.724
28433.543
14842.988
13453.265
20616.417
15707.339
14133.025
16491.427
20616.417
29799.437
25280.277
15038.134
17108.496
13789.884
12850.124
16905.473
21017.737
16215.133
)
;
}
procBoundary2to5
{
type processor;
value nonuniform List<scalar>
743
(
2186.7243
4570.075
3997.4817
3997.4817
3997.4817
807.2646
807.2646
836.23007
1864.1828
2070.6089
1252.641
1252.641
9514.5993
9514.5993
9514.5993
1864.1828
7513.146
735.48309
682.1233
1865.4668
2070.6089
649.2206
649.2206
2029.0211
4690.768
18883.378
13041.901
4388.2615
1867.2258
1560.1887
1399.6411
1399.6411
1399.6411
1399.6411
564.06984
564.06984
564.06984
564.06984
1865.4668
4760.233
1865.4668
1865.4668
868.26134
4972.589
524.81323
667.44699
667.44699
2178.344
3602.6158
6956.0595
13503.836
33060.083
21218.223
8158.2775
4715.1112
4158.1217
3976.8814
3976.8814
3178.0357
3178.0357
3507.7397
8627.1218
1175.6699
1043.695
9734.5731
4760.233
4760.233
10412.401
9931.3487
4705.6919
4705.6919
5244.0406
9506.2264
868.26134
9048.3656
505.94959
505.94959
652.26183
652.26183
2237.3504
4128.8494
7639.4594
12940.655
19029.841
30168.713
47546.886
37645.641
11885.313
9511.2017
8988.4415
8988.4415
8848.9157
7414.2979
2657.78
6517.5229
6332.7678
6332.7678
8580.2948
8627.1218
8627.1218
2507.7329
1986.0647
2163.1547
9734.5731
9734.5731
10427.434
9720.552
10427.434
10412.401
9931.3487
15159.945
15945.33
9715.5884
8726.2003
9506.2264
9715.5884
9506.2264
10179.385
14031.011
1495.1356
1695.7863
12691.69
691.54651
684.6236
684.6236
684.6236
4096.5456
2204.9548
4762.9053
2204.9548
2204.9548
6343.2691
10674.389
16265.374
24001.639
19540.608
43326.575
28191.752
53797.207
66313.894
40151.184
15092.075
14503.266
15908.833
15908.833
15021.268
16300.18
15472.087
14645.513
20854.719
19048.765
5294.0079
5345.5338
20098.095
20053.986
20053.986
20053.986
20053.986
19308.135
17634.697
16500.824
17907.493
18192.24
17907.493
17907.493
4803.1267
4840.1486
4840.1486
4803.1267
3703.6259
3703.6259
3824.5389
3824.5389
4367.045
4367.045
4269.4333
4269.4333
16139.642
15359.285
16139.642
16099.504
14866.385
15567.79
15223.683
14231.61
15567.79
15945.33
15296.359
15904.574
15945.33
15159.945
13275.726
12580.73
12818.917
12099.293
13275.726
14118.413
13203.738
13347.928
14031.011
14031.011
14118.413
14450.887
2522.9581
2736.6025
3131.994
3286.7184
3286.7184
3131.994
7226.9848
4624.261
8205.3977
7185.2119
2081.432
4735.9181
5121.6737
4624.261
8967.3489
11590.02
17178.53
21907.633
26074.871
61437.051
30433.696
57784.711
99325.237
71619.766
35442.306
32196.787
32889.691
29430.121
29430.121
30112.392
30143.493
30823.139
31507.065
27975.945
27975.945
28135.011
16909.472
17836.501
26351.703
30140.949
30111.024
30111.024
36516.571
28669.588
29322.709
30863.358
30207.847
30863.358
30207.847
16909.472
16655.228
15720.302
11597.188
12705.999
14761.441
13753.795
35972.292
36682.493
35972.292
35144.851
40762.737
40208.052
41221.906
41466.835
40208.052
38773.701
38123.643
74322.898
37418.44
38773.701
39513.814
38052.469
36576.695
35504.999
38052.469
41449.165
40409.078
38525.6
41802.843
41802.843
41449.165
41521.006
6808.5716
7943.9378
10428.558
9240.8575
7943.9378
9152.4842
8079.9674
11118.406
10312.196
12479.85
4735.9181
4735.9181
4735.9181
4905.2868
9573.2617
9885.2134
8967.3489
9152.4842
8967.3489
19629.483
16702.595
23120.277
22758.152
26178.119
27825.044
79103.849
36652.895
36538.528
49241.345
106538.38
85387.645
65059.549
66781.751
67778.441
62530.32
62530.32
63585.249
63810.684
64707.891
65747.883
44302.732
60390.261
60390.261
22564.966
22491.036
26351.703
26351.703
23776.14
106415.92
106931.37
106931.37
111402.62
61421.16
62383.042
64761.336
63761.245
64761.336
63761.245
22564.966
23711.617
23385.203
23179.239
22375.509
22146.072
18380.496
18171.839
19381.55
19196.577
21385.43
21183.386
20370.345
20201.952
71834.066
72729.778
71834.066
70831.319
77216.612
76649.181
77654.316
77837.817
76649.181
74322.898
74322.898
73622.445
75214.453
76021.009
69905.472
66679.755
64366.947
69905.472
76174.635
74084.521
70790.8
77406.838
77406.838
76174.635
77404.285
13390.13
13313.279
14393.486
14207.43
17270.055
17157.185
14207.43
16096.395
14797.129
16010.864
12918.483
11981.362
12104.766
11039.04
18879.44
17290.475
24212.012
20152.461
9386.6271
9386.6271
10153.253
9573.2617
9573.2617
10018.28
14678.911
14078.736
12918.483
12921.03
13025.98
14573.548
14573.548
14535.796
10018.28
24975.924
27377.047
31445.843
33966.757
33312.907
17952.011
44150.205
37530.062
16999.146
22176.404
14627.784
94149.293
92557.034
93726.088
87662.707
87662.707
88872.33
87383.731
89997.957
91267.654
114107.61
62706.465
83663.459
83663.459
90253.422
92135.415
100559.36
100559.36
94399.276
134836.84
136874.05
136874.05
130749.68
84647.591
85149.232
85973.517
85812.371
85973.517
85812.371
90253.422
93887.984
91878.898
93724.202
88058.935
89824.019
70896.227
73294.594
75711.674
77983.947
84236.845
86069.636
80162.678
82180.099
92804.626
93676.671
92804.626
93777.993
97867.549
97158.68
98636.822
99335.418
97158.68
94888.93
94888.93
94392.063
95474.981
96471.209
97990.515
96392.959
94550.748
97990.515
99376.189
98832.769
98488.785
99262.089
99262.089
99376.189
99872.224
48533.95
50903.439
53395.851
55624.68
65413.549
68188.464
55624.68
59770.474
56560.565
100349.87
62513.023
22865.266
22085.147
21381.381
20303.538
26646.092
24319.851
30687.758
26521.136
14232.965
15041.51
15041.51
15111.651
14512.911
15104.786
15353.175
14618.285
15411.679
14836.955
15353.175
36278.438
37283.577
22865.266
24104.983
23145.47
26106.512
35538.476
35414.495
14836.955
31089.533
31886.986
33038.523
39951.001
35546.295
39276.056
17985.662
17335.638
15668.224
14120.405
14350.666
13271.964
13271.964
13465.954
13268.53
13669.504
13891.495
117736.67
82617.794
12394.633
12394.633
138671.97
140383.98
138395.82
138395.82
141687.67
17312.298
17311.737
17311.737
18890
12489.619
12682.732
13072.567
12878.168
13072.567
12878.168
138671.97
139411.22
137672.58
139109.32
134229.4
136106.61
113840.76
116842.31
119971.49
122745.11
130223.87
132199.68
125514.08
127942.8
14587.657
14838.439
14587.657
14591.547
17023.443
16539.798
17409.932
17805.271
16539.798
15323.234
15323.234
15088.736
15571.691
15982.75
17966.929
17423.954
16656.475
17966.929
18312.901
18186.429
17961.554
18261.549
18261.549
18312.901
18066.389
84014.919
88526.425
92158.147
95669.426
107646.04
110639.34
100349.87
95669.426
100349.87
104258.25
31112.478
30770.718
30427.049
30950.93
34063.53
31820.579
30470.104
40278.964
32918.323
31525.063
36373.618
36436.843
36436.843
37078.847
36194.468
35653.541
33788.359
34769.946
33905.349
33135.389
33788.359
38160.853
39623.929
35538.476
31112.478
31743.3
31443.428
32919.052
31565.986
32393.084
33135.389
39008.939
38536.268
34468.655
13302.109
14753.074
16720.815
22315.841
16282.771
15743.292
15970.809
16567.296
16567.296
16217.204
15743.292
15742.561
15348.565
15534.699
14980.578
15164.38
13714.733
13856.383
13999.167
14143.095
14620.538
14799.534
14284.723
14444.138
12774.693
12871.853
12983.975
13104.019
13442.669
13569.492
13218.772
13104.019
13218.772
13332.553
42234.985
43028.311
43485.887
44350.135
37093.945
39530.348
39379.641
12651.003
34746.871
38034.373
37193.147
36502.557
36502.557
35838.721
36253.848
35392.888
33922.759
34514.683
34667.919
34127.403
33922.759
12495.632
12243.413
31565.986
42234.985
39264.677
41665.835
37015.113
16159.304
16169.57
13932.151
17951.86
15458.309
15611.588
14489.915
13396.612
12159.721
15127.967
19555.126
15365.898
15010.49
18575.208
12986.372
13262.804
13262.804
13251.897
13312.755
13458.878
13760.021
13693.557
13779.441
13658.308
13760.021
16159.304
15611.588
17813.284
15607.256
22004.659
)
;
}
}
// ************************************************************************* //
| |
f56c5157a5cd8ba1d9be1e81436893ec5cf119de | 2456485fe469ab60f35198cf05cd5031c6feb4a4 | /algorithms/Return the Highest and Lowest Numbers.cpp | f4e3d31d2ad020d3bed6bcd6ef1c19dbb4e4251c | [] | no_license | namchokGithub/cplusplus-languages | 6fa82da776adeac3aacee7241468c391cc3a19d4 | 023a0c5ad2b5b71b7b49b332f136f4218dfd7bc8 | refs/heads/master | 2020-09-04T22:15:16.489711 | 2020-01-29T11:12:56 | 2020-01-29T11:12:56 | 219,906,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | cpp | Return the Highest and Lowest Numbers.cpp | /*
* File name: Return the Highest and Lowest Numbers
* Author: Namechok Singhachai
* Date create: 2019-11-5
*/
#include <iostream>
#include <iomanip>
#include <string>
using namespace std;
std::string highLow(std::string str) {
}
int main(int argc, char const *argv[])
{
cout << "There will always be at least one number in the input string." << endl << endl;
cout << "Wait me please, I will comeback!!";
return 0;
}
|
cf98ebe88ab9df0cf029b66b634d6d3f02f63054 | 929eee8ed821e952aa4781abd414649ff6b61984 | /engine/diffuseshader.cpp | 43aaebf12a6c3103b102ccbf9df92c50b3ea84cd | [
"BSD-2-Clause"
] | permissive | comaralex/Chess2k17 | dfdd01a0ee859fee15af6569061a4811e398782c | 0c90ad1ec6416d4881932ca6588551d76ae3b8ac | refs/heads/master | 2021-01-21T10:48:53.670540 | 2020-07-24T14:26:36 | 2020-07-24T14:26:36 | 91,707,885 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 264 | cpp | diffuseshader.cpp | #include "diffuseshader.h"
DiffuseShader::DiffuseShader()
: black::ShaderProgram()
{
auto& rm = black::ResourceManager::getInstance();
create(rm.get<black::Shader>("shaders/diffuse.vert"),
rm.get<black::Shader>("shaders/diffuse.frag"));
}
|
2b8c5cf1054288ef59edf6a09a1df05926525be2 | 00d79988701553bcfc84837d7335e111d1413ae3 | /Personal_projects_C++/Pokemon_TURN!/resources/algo.h | abdc2f7a056187b4310f8988c5183b3f370c2540 | [] | no_license | type-coder-engineer/Personnal-projects | 94e56be189f291a029bd5a814ca311caad5d39c5 | e67fec2767ebf429acf71aa960f2afc4a4e9c272 | refs/heads/master | 2020-04-12T07:20:44.786527 | 2019-01-02T07:31:31 | 2019-01-02T07:31:31 | 62,729,183 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 263 | h | algo.h | #ifndef ALGO_H
#define ALGO_H
#include <iostream>
#include <cmath>
class fun
{
public:
const int H;
const int L;
fun(int row, int column);
~fun() = default;
void init();
bool end();
int **map;
};
#endif // ALGO_H
|
5d0efc64146503f40aaac37ab47003ba9e4597c2 | ea2a37d8fb1423c984efb3aacbe10a16584ec70c | /addition.cpp | c4ce49869b52871d7baa6d28167b70deee01c5d3 | [] | no_license | Nazeer-Marri/BSIT-M | c03e22bdbf73a9cf9bb54b9217c7d2b453fd63f0 | 22304b11a5b994791dd7d1928527d16d19806a6d | refs/heads/main | 2023-04-29T05:11:16.936975 | 2021-05-07T03:49:28 | 2021-05-07T03:49:28 | 348,834,254 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 795 | cpp | addition.cpp | #include<stdio.h>
int main()
{
int arr[]={1,6,0,3,8,9,0,2};
int i,count=0;
int n=8;
for(i=0;i<n;i++)
{
if(arr[i]>0){
arr[count++]=arr[i];
}
while(count<n){
arr[count++]=0;
}
for(i=0;i<n;i++){
}
printf(" %d ",arr);
}
return 0;
}
//int a[3][3],b[3][3],c[3][3],i,j;
// printf("enter 9 number for frist matrix:");
// for(i=0;i<=3;i++)
// for(j=0;j<=3;j++)
// scanf("%d",&a[i][j]);
// printf("enter 9 number for second matrix:");
// for(i=0;i<=3;i++)
// for(j=0;j<=3;j++)
// scanf("%d",&b[i][j]);
// printf("dividing of matrix is\n");
// for(i=0;i<=3;i++)
//
// for(j=0;j<=3;j++)
// c[i][j]=a[i][j]/b[i][j];
// printf("%d ",c[i][j]);
//
// printf("\n");
// return 0;
|
564db32808e8eada78d2f36f7b3909a2a514712e | 8c82f303ec7f26ff886ac26fc173750cfaf6074d | /thirds/qtcss/include/qtstylesheet.h | 9e492d466d886a79bcbc0f7f5115aeea546456b2 | [] | no_license | ruoxianSun/nestpp | c21a2ddee25ed60de6b3df2b671692bf949f91a3 | 5de0d1ff9e1df76e97c2db4a8370dfaf9c47f0e0 | refs/heads/master | 2022-11-27T11:47:01.822275 | 2020-07-22T02:55:49 | 2020-07-22T02:55:49 | 268,223,684 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,198 | h | qtstylesheet.h | #ifndef QTSTYLESHEET_H
#define QTSTYLESHEET_H
#include <QtWidgets/QStyle>
#include <qtcssparser.h>
#include <QtWidgets/QLabel>
#include <QtWidgets/QProxyStyle>
#include <QtWidgets/QWidget>
#include <QtCore/QSet>
#include <QtCore/QObject>
enum PseudoElement {
PseudoElement_None,
PseudoElement_DownArrow,
PseudoElement_UpArrow,
PseudoElement_LeftArrow,
PseudoElement_RightArrow,
PseudoElement_Indicator,
PseudoElement_ExclusiveIndicator,
PseudoElement_PushButtonMenuIndicator,
PseudoElement_ComboBoxDropDown,
PseudoElement_ComboBoxArrow,
PseudoElement_Item,
PseudoElement_SpinBoxUpButton,
PseudoElement_SpinBoxUpArrow,
PseudoElement_SpinBoxDownButton,
PseudoElement_SpinBoxDownArrow,
PseudoElement_GroupBoxTitle,
PseudoElement_GroupBoxIndicator,
PseudoElement_ToolButtonMenu,
PseudoElement_ToolButtonMenuArrow,
PseudoElement_ToolButtonDownArrow,
PseudoElement_ToolBoxTab,
PseudoElement_ScrollBarSlider,
PseudoElement_ScrollBarAddPage,
PseudoElement_ScrollBarSubPage,
PseudoElement_ScrollBarAddLine,
PseudoElement_ScrollBarSubLine,
PseudoElement_ScrollBarFirst,
PseudoElement_ScrollBarLast,
PseudoElement_ScrollBarUpArrow,
PseudoElement_ScrollBarDownArrow,
PseudoElement_ScrollBarLeftArrow,
PseudoElement_ScrollBarRightArrow,
PseudoElement_SplitterHandle,
PseudoElement_ToolBarHandle,
PseudoElement_ToolBarSeparator,
PseudoElement_MenuScroller,
PseudoElement_MenuTearoff,
PseudoElement_MenuCheckMark,
PseudoElement_MenuSeparator,
PseudoElement_MenuIcon,
PseudoElement_MenuRightArrow,
PseudoElement_TreeViewBranch,
PseudoElement_HeaderViewSection,
PseudoElement_HeaderViewUpArrow,
PseudoElement_HeaderViewDownArrow,
PseudoElement_ProgressBarChunk,
PseudoElement_TabBarTab,
PseudoElement_TabBarScroller,
PseudoElement_TabBarTear,
PseudoElement_SliderGroove,
PseudoElement_SliderHandle,
PseudoElement_SliderAddPage,
PseudoElement_SliderSubPage,
PseudoElement_SliderTickmark,
PseudoElement_TabWidgetPane,
PseudoElement_TabWidgetTabBar,
PseudoElement_TabWidgetLeftCorner,
PseudoElement_TabWidgetRightCorner,
PseudoElement_DockWidgetTitle,
PseudoElement_DockWidgetCloseButton,
PseudoElement_DockWidgetFloatButton,
PseudoElement_DockWidgetSeparator,
PseudoElement_MdiCloseButton,
PseudoElement_MdiMinButton,
PseudoElement_MdiNormalButton,
PseudoElement_TitleBar,
PseudoElement_TitleBarCloseButton,
PseudoElement_TitleBarMinButton,
PseudoElement_TitleBarMaxButton,
PseudoElement_TitleBarShadeButton,
PseudoElement_TitleBarUnshadeButton,
PseudoElement_TitleBarNormalButton,
PseudoElement_TitleBarContextHelpButton,
PseudoElement_TitleBarSysMenu,
PseudoElement_ViewItem,
PseudoElement_ViewItemIcon,
PseudoElement_ViewItemText,
PseudoElement_ViewItemIndicator,
PseudoElement_ScrollAreaCorner,
PseudoElement_TabBarTabCloseButton,
NumPseudoElements
};
struct PseudoElementInfo {
QStyle::SubControl subControl;
const char name[19];
};
static const PseudoElementInfo knownPseudoElements[NumPseudoElements] = {
{ QStyle::SC_None, "" },
{ QStyle::SC_None, "down-arrow" },
{ QStyle::SC_None, "up-arrow" },
{ QStyle::SC_None, "left-arrow" },
{ QStyle::SC_None, "right-arrow" },
{ QStyle::SC_None, "indicator" },
{ QStyle::SC_None, "indicator" },
{ QStyle::SC_None, "menu-indicator" },
{ QStyle::SC_ComboBoxArrow, "drop-down" },
{ QStyle::SC_ComboBoxArrow, "down-arrow" },
{ QStyle::SC_None, "item" },
{ QStyle::SC_SpinBoxUp, "up-button" },
{ QStyle::SC_SpinBoxUp, "up-arrow" },
{ QStyle::SC_SpinBoxDown, "down-button" },
{ QStyle::SC_SpinBoxDown, "down-arrow" },
{ QStyle::SC_GroupBoxLabel, "title" },
{ QStyle::SC_GroupBoxCheckBox, "indicator" },
{ QStyle::SC_ToolButtonMenu, "menu-button" },
{ QStyle::SC_ToolButtonMenu, "menu-arrow" },
{ QStyle::SC_None, "menu-indicator" },
{ QStyle::SC_None, "tab" },
{ QStyle::SC_ScrollBarSlider, "handle" },
{ QStyle::SC_ScrollBarAddPage, "add-page" },
{ QStyle::SC_ScrollBarSubPage, "sub-page" },
{ QStyle::SC_ScrollBarAddLine, "add-line" },
{ QStyle::SC_ScrollBarSubLine, "sub-line" },
{ QStyle::SC_ScrollBarFirst, "first" },
{ QStyle::SC_ScrollBarLast, "last" },
{ QStyle::SC_ScrollBarSubLine, "up-arrow" },
{ QStyle::SC_ScrollBarAddLine, "down-arrow" },
{ QStyle::SC_ScrollBarSubLine, "left-arrow" },
{ QStyle::SC_ScrollBarAddLine, "right-arrow" },
{ QStyle::SC_None, "handle" },
{ QStyle::SC_None, "handle" },
{ QStyle::SC_None, "separator" },
{ QStyle::SC_None, "scroller" },
{ QStyle::SC_None, "tearoff" },
{ QStyle::SC_None, "indicator" },
{ QStyle::SC_None, "separator" },
{ QStyle::SC_None, "icon" },
{ QStyle::SC_None, "right-arrow" },
{ QStyle::SC_None, "branch" },
{ QStyle::SC_None, "section" },
{ QStyle::SC_None, "down-arrow" },
{ QStyle::SC_None, "up-arrow" },
{ QStyle::SC_None, "chunk" },
{ QStyle::SC_None, "tab" },
{ QStyle::SC_None, "scroller" },
{ QStyle::SC_None, "tear" },
{ QStyle::SC_SliderGroove, "groove" },
{ QStyle::SC_SliderHandle, "handle" },
{ QStyle::SC_None, "add-page" },
{ QStyle::SC_None, "sub-page"},
{ QStyle::SC_SliderTickmarks, "tick-mark" },
{ QStyle::SC_None, "pane" },
{ QStyle::SC_None, "tab-bar" },
{ QStyle::SC_None, "left-corner" },
{ QStyle::SC_None, "right-corner" },
{ QStyle::SC_None, "title" },
{ QStyle::SC_None, "close-button" },
{ QStyle::SC_None, "float-button" },
{ QStyle::SC_None, "separator" },
{ QStyle::SC_MdiCloseButton, "close-button" },
{ QStyle::SC_MdiMinButton, "minimize-button" },
{ QStyle::SC_MdiNormalButton, "normal-button" },
{ QStyle::SC_TitleBarLabel, "title" },
{ QStyle::SC_TitleBarCloseButton, "close-button" },
{ QStyle::SC_TitleBarMinButton, "minimize-button" },
{ QStyle::SC_TitleBarMaxButton, "maximize-button" },
{ QStyle::SC_TitleBarShadeButton, "shade-button" },
{ QStyle::SC_TitleBarUnshadeButton, "unshade-button" },
{ QStyle::SC_TitleBarNormalButton, "normal-button" },
{ QStyle::SC_TitleBarContextHelpButton, "contexthelp-button" },
{ QStyle::SC_TitleBarSysMenu, "sys-menu" },
{ QStyle::SC_None, "item" },
{ QStyle::SC_None, "icon" },
{ QStyle::SC_None, "text" },
{ QStyle::SC_None, "indicator" },
{ QStyle::SC_None, "corner" },
{ QStyle::SC_None, "close-button" },
};
struct QStyleSheetBorderImageData : public QSharedData
{
QStyleSheetBorderImageData()
: horizStretch(QtCss::TileMode_Unknown), vertStretch(QtCss::TileMode_Unknown)
{
for (int i = 0; i < 4; i++)
cuts[i] = -1;
}
int cuts[4];
QPixmap pixmap;
QImage image;
QtCss::TileMode horizStretch, vertStretch;
};
struct QStyleSheetBackgroundData : public QSharedData
{
QStyleSheetBackgroundData(const QBrush& b, const QPixmap& p, QtCss::Repeat r,
Qt::Alignment a, QtCss::Origin o, QtCss::Attachment t, QtCss::Origin c)
: brush(b), pixmap(p), repeat(r), position(a), origin(o), attachment(t), clip(c) { }
bool isTransparent() const {
if (brush.style() != Qt::NoBrush)
return !brush.isOpaque();
return pixmap.isNull() ? false : pixmap.hasAlpha();
}
QBrush brush;
QPixmap pixmap;
QtCss::Repeat repeat;
Qt::Alignment position;
QtCss::Origin origin;
QtCss::Attachment attachment;
QtCss::Origin clip;
};
struct QStyleSheetBorderData : public QSharedData
{
QStyleSheetBorderData() : bi(0)
{
for (int i = 0; i < 4; i++) {
borders[i] = 0;
styles[i] = QtCss::BorderStyle_None;
}
}
QStyleSheetBorderData(int *b, QBrush *c, QtCss::BorderStyle *s, QSize *r) : bi(0)
{
for (int i = 0; i < 4; i++) {
borders[i] = b[i];
styles[i] = s[i];
colors[i] = c[i];
radii[i] = r[i];
}
}
int borders[4];
QBrush colors[4];
QtCss::BorderStyle styles[4];
QSize radii[4]; // topleft, topright, bottomleft, bottomright
const QStyleSheetBorderImageData *borderImage() const
{ return bi; }
bool hasBorderImage() const { return bi!=0; }
QSharedDataPointer<QStyleSheetBorderImageData> bi;
bool isOpaque() const
{
for (int i = 0; i < 4; i++) {
if (styles[i] == QtCss::BorderStyle_Native || styles[i] == QtCss::BorderStyle_None)
continue;
if (styles[i] >= QtCss::BorderStyle_Dotted && styles[i] <= QtCss::BorderStyle_DotDotDash
&& styles[i] != QtCss::BorderStyle_Solid)
return false;
if (!colors[i].isOpaque())
return false;
if (!radii[i].isEmpty())
return false;
}
if (bi != 0 && bi->pixmap.hasAlpha())
return false;
return true;
}
};
struct QStyleSheetOutlineData : public QStyleSheetBorderData
{
QStyleSheetOutlineData()
{
for (int i = 0; i < 4; i++) {
offsets[i] = 0;
}
}
QStyleSheetOutlineData(int *b, QBrush *c, QtCss::BorderStyle *s, QSize *r, int *o)
: QStyleSheetBorderData(b, c, s, r)
{
for (int i = 0; i < 4; i++) {
offsets[i] = o[i];
}
}
int offsets[4];
};
struct QStyleSheetBoxData : public QSharedData
{
QStyleSheetBoxData(int *m, int *p, int s) : spacing(s)
{
for (int i = 0; i < 4; i++) {
margins[i] = m[i];
paddings[i] = p[i];
}
}
int margins[4];
int paddings[4];
int spacing;
};
struct QStyleSheetPaletteData : public QSharedData
{
QStyleSheetPaletteData(const QBrush &fg, const QBrush &sfg, const QBrush &sbg,
const QBrush &abg)
: foreground(fg), selectionForeground(sfg), selectionBackground(sbg),
alternateBackground(abg) { }
QBrush foreground;
QBrush selectionForeground;
QBrush selectionBackground;
QBrush alternateBackground;
};
struct QStyleSheetGeometryData : public QSharedData
{
QStyleSheetGeometryData(int w, int h, int minw, int minh, int maxw, int maxh)
: minWidth(minw), minHeight(minh), width(w), height(h), maxWidth(maxw), maxHeight(maxh) { }
int minWidth, minHeight, width, height, maxWidth, maxHeight;
};
struct QStyleSheetPositionData : public QSharedData
{
QStyleSheetPositionData(int l, int t, int r, int b,QtCss::Origin o, Qt::Alignment p, QtCss::PositionMode m, Qt::Alignment a = 0)
: left(l), top(t), bottom(b), right(r), origin(o), position(p), mode(m), textAlignment(a) { }
int left, top, bottom, right;
QtCss::Origin origin;
Qt::Alignment position;
QtCss::PositionMode mode;
Qt::Alignment textAlignment;
};
struct QStyleSheetImageData : public QSharedData
{
QStyleSheetImageData(const QIcon &i, Qt::Alignment a, const QSize &sz)
: icon(i), alignment(a), size(sz) { }
QIcon icon;
Qt::Alignment alignment;
QSize size;
};
class QTCSS_EXPORT QRenderRule
{
public:
QRenderRule() : features(0), hasFont(false), pal(0), b(0), bg(0), bd(0), ou(0), geo(0), p(0), img(0), clipset(0) { }
QRenderRule(const QVector<QtCss::Declaration> &, const QObject *);
QRect borderRect(const QRect &r) const;
QRect outlineRect(const QRect &r) const;
QRect paddingRect(const QRect &r) const;
QRect contentsRect(const QRect &r) const;
enum { Margin = 1, Border = 2, Padding = 4, All=Margin|Border|Padding };
QRect boxRect(const QRect &r, int flags = All) const;
QSize boxSize(const QSize &s, int flags = All) const;
QRect originRect(const QRect &rect, QtCss::Origin origin) const;
QPainterPath borderClip(QRect rect);
void drawBorder(QPainter *, const QRect&);
void drawOutline(QPainter *, const QRect&);
void drawBorderImage(QPainter *, const QRect&);
void drawBackground(QPainter *, const QRect&, const QPoint& = QPoint(0, 0));
void drawBackgroundImage(QPainter *, const QRect&, QPoint = QPoint(0, 0));
void drawFrame(QPainter *, const QRect&);
void drawImage(QPainter *p, const QRect &rect);
void drawRule(QPainter *, const QRect&);
void configurePalette(QPalette *, QPalette::ColorGroup, const QWidget *, bool);
void configurePalette(QPalette *p, QPalette::ColorRole fr, QPalette::ColorRole br);
const QStyleSheetPaletteData *palette() const { return pal; }
const QStyleSheetBoxData *box() const { return b; }
const QStyleSheetBackgroundData *background() const { return bg; }
const QStyleSheetBorderData *border() const { return bd; }
const QStyleSheetOutlineData *outline() const { return ou; }
const QStyleSheetGeometryData *geometry() const { return geo; }
const QStyleSheetPositionData *position() const { return p; }
bool hasModification() const;
bool hasPalette() const { return pal != 0; }
bool hasBackground() const { return bg != 0 && (!bg->pixmap.isNull() || bg->brush.style() != Qt::NoBrush); }
bool hasGradientBackground() const { return bg && bg->brush.style() >= Qt::LinearGradientPattern
&& bg->brush.style() <= Qt::ConicalGradientPattern; }
bool hasNativeBorder() const {
return bd == 0
|| (!bd->hasBorderImage() && bd->styles[0] == QtCss::BorderStyle_Native);
}
bool hasNativeOutline() const {
return (ou == 0
|| (!ou->hasBorderImage() && ou->styles[0] == QtCss::BorderStyle_Native));
}
bool baseStyleCanDraw() const {
if (!hasBackground() || (background()->brush.style() == Qt::NoBrush && bg->pixmap.isNull()))
return true;
if (bg && !bg->pixmap.isNull())
return false;
if (hasGradientBackground())
return features & QtCss::StyleFeature_BackgroundGradient;
return features & QtCss::StyleFeature_BackgroundColor;
}
bool hasBox() const { return b != 0; }
bool hasBorder() const { return bd != 0; }
bool hasOutline() const { return ou != 0; }
bool hasPosition() const { return p != 0; }
bool hasGeometry() const { return geo != 0; }
bool hasDrawable() const { return !hasNativeBorder() || hasBackground() || hasImage(); }
bool hasImage() const { return img != 0; }
QSize minimumContentsSize() const
{ return geo ? QSize(geo->minWidth, geo->minHeight) : QSize(0, 0); }
QSize minimumSize() const
{ return boxSize(minimumContentsSize()); }
QSize contentsSize() const
{ return geo ? QSize(geo->width, geo->height)
: ((img && img->size.isValid()) ? img->size : QSize()); }
QSize contentsSize(const QSize &sz) const
{
QSize csz = contentsSize();
if (csz.width() == -1) csz.setWidth(sz.width());
if (csz.height() == -1) csz.setHeight(sz.height());
return csz;
}
bool hasContentsSize() const
{ return (geo && (geo->width != -1 || geo->height != -1)) || (img && img->size.isValid()); }
QSize size() const { return boxSize(contentsSize()); }
QSize size(const QSize &sz) const { return boxSize(contentsSize(sz)); }
QSize adjustSize(const QSize &sz)
{
if (!geo)
return sz;
QSize csz = contentsSize();
if (csz.width() == -1) csz.setWidth(sz.width());
if (csz.height() == -1) csz.setHeight(sz.height());
if (geo->maxWidth != -1 && csz.width() > geo->maxWidth) csz.setWidth(geo->maxWidth);
if (geo->maxHeight != -1 && csz.height() > geo->maxHeight) csz.setHeight(geo->maxHeight);
csz=csz.expandedTo(QSize(geo->minWidth, geo->minHeight));
return csz;
}
bool hasStyleHint(const QString &sh) const { return styleHints.contains(sh); }
QVariant styleHint(const QString &sh) const { return styleHints.value(sh); }
void fixupBorder(int);
// Shouldn't be here
void setClip(QPainter *p, const QRect &rect);
void unsetClip(QPainter *);
public:
int features;
QBrush defaultBackground;
QFont font;
bool hasFont;
QHash<QString, QVariant> styleHints;
QSharedDataPointer<QStyleSheetPaletteData> pal;
QSharedDataPointer<QStyleSheetBoxData> b;
QSharedDataPointer<QStyleSheetBackgroundData> bg;
QSharedDataPointer<QStyleSheetBorderData> bd;
QSharedDataPointer<QStyleSheetOutlineData> ou;
QSharedDataPointer<QStyleSheetGeometryData> geo;
QSharedDataPointer<QStyleSheetPositionData> p;
QSharedDataPointer<QStyleSheetImageData> img;
int clipset;
QPainterPath clipPath;
};
Q_DECLARE_TYPEINFO(QRenderRule, Q_MOVABLE_TYPE);
QTCSS_EXPORT static QList<QVariant> subControlLayout(const QString& layout);
namespace {
struct ButtonInfo {
QRenderRule rule;
int element;
int offset;
int where;
int width;
};
}
template <> class QTypeInfo<ButtonInfo> : public QTypeInfoMerger<ButtonInfo, QRenderRule, int> {};
QPixmap loadPixmap(const QString &fileName, const QObject *context);
// Style rules
#define OBJECT_PTR(x) (static_cast<QObject *>(x.ptr))
static inline QObject *parentObject(const QObject *obj)
{
#if QT_CONFIG(tooltip)
if (qobject_cast<const QLabel *>(obj) && qstrcmp(obj->metaObject()->className(), "QTipLabel") == 0) {
QObject *p = qvariant_cast<QObject *>(obj->property("_q_stylesheet_parent"));
if (p)
return p;
}
#endif
return obj->parent();
}
class QStyleSheetStyleSelector : public QtCss::StyleSelector
{
public:
QStyleSheetStyleSelector() { }
QStringList nodeNames(NodePtr node) const override
{
if (isNullNode(node))
return QStringList();
const QMetaObject *metaObject = OBJECT_PTR(node)->metaObject();
#ifndef QT_NO_TOOLTIP
if (qstrcmp(metaObject->className(), "QTipLabel") == 0)
return QStringList(QLatin1String("QToolTip"));
#endif
QStringList result;
do {
result += QString::fromLatin1(metaObject->className()).replace(QLatin1Char(':'), QLatin1Char('-'));
metaObject = metaObject->superClass();
} while (metaObject != 0);
return result;
}
QString attribute(NodePtr node, const QString& name) const override
{
if (isNullNode(node))
return QString();
QHash<QString, QString> &cache = m_attributeCache[OBJECT_PTR(node)];
QHash<QString, QString>::const_iterator cacheIt = cache.constFind(name);
if (cacheIt != cache.constEnd())
return cacheIt.value();
QObject *obj = OBJECT_PTR(node);
QVariant value = obj->property(name.toLatin1());
if (!value.isValid()) {
if (name == QLatin1String("class")) {
QString className = QString::fromLatin1(obj->metaObject()->className());
if (className.contains(QLatin1Char(':')))
className.replace(QLatin1Char(':'), QLatin1Char('-'));
cache[name] = className;
return className;
} else if (name == QLatin1String("style")) {
QWidget *w = qobject_cast<QWidget *>(obj);
QProxyStyle *proxy = w ? qobject_cast<QProxyStyle*>(w->style()) : 0;
if (proxy) {
QString styleName = QString::fromLatin1(proxy->baseStyle()->metaObject()->className());
cache[name] = styleName;
return styleName;
}
}
}
QString valueStr;
if(value.type() == QVariant::StringList || value.type() == QVariant::List)
valueStr = value.toStringList().join(QLatin1Char(' '));
else
valueStr = value.toString();
cache[name] = valueStr;
return valueStr;
}
bool nodeNameEquals(NodePtr node, const QString& nodeName) const override
{
if (isNullNode(node))
return false;
const QMetaObject *metaObject = OBJECT_PTR(node)->metaObject();
#ifndef QT_NO_TOOLTIP
if (qstrcmp(metaObject->className(), "QTipLabel") == 0)
return nodeName == QLatin1String("QToolTip");
#endif
do {
const ushort *uc = (const ushort *)nodeName.constData();
const ushort *e = uc + nodeName.length();
const uchar *c = (const uchar *)metaObject->className();
while (*c && uc != e && (*uc == *c || (*c == ':' && *uc == '-'))) {
++uc;
++c;
}
if (uc == e && !*c)
return true;
metaObject = metaObject->superClass();
} while (metaObject != 0);
return false;
}
bool hasAttributes(NodePtr) const override
{ return true; }
QStringList nodeIds(NodePtr node) const override
{ return isNullNode(node) ? QStringList() : QStringList(OBJECT_PTR(node)->objectName()); }
bool isNullNode(NodePtr node) const override
{ return node.ptr == 0; }
NodePtr parentNode(NodePtr node) const override
{ NodePtr n; n.ptr = isNullNode(node) ? 0 : parentObject(OBJECT_PTR(node)); return n; }
NodePtr previousSiblingNode(NodePtr) const override
{ NodePtr n; n.ptr = 0; return n; }
NodePtr duplicateNode(NodePtr node) const override
{ return node; }
void freeNode(NodePtr) const override
{ }
private:
mutable QHash<const QObject *, QHash<QString, QString> > m_attributeCache;
};
class QTCSS_EXPORT QStyleSheetCaches : public QObject
{
Q_OBJECT
public Q_SLOTS:
void objectDestroyed(QObject *o)
{
styleRulesCache.remove(o);
hasStyleRuleCache.remove(o);
renderRulesCache.remove(o);
customPaletteWidgets.remove((const QWidget *)o);
customFontWidgets.remove(static_cast<QWidget *>(o));
styleSheetCache.remove(o);
autoFillDisabledWidgets.remove((const QWidget *)o);
}
void styleDestroyed(QObject *o)
{
styleSheetCache.remove(o);
}
public:
QHash<const QObject *, QVector<QtCss::StyleRule> > styleRulesCache;
QHash<const QObject *, QHash<int, bool> > hasStyleRuleCache;
typedef QHash<int, QHash<quint64, QRenderRule> > QRenderRules;
QHash<const QObject *, QRenderRules> renderRulesCache;
QHash<const void *, QtCss::StyleSheet> styleSheetCache; // parsed style sheets
QSet<const QWidget *> autoFillDisabledWidgets;
// widgets with whose palettes and fonts we have tampered:
template <typename T>
struct Tampered {
T oldWidgetValue;
uint resolveMask;
// only call this function on an rvalue *this (it mangles oldWidgetValue)
T reverted(T current)
#ifdef Q_COMPILER_REF_QUALIFIERS
&&
#endif
{
oldWidgetValue.resolve(oldWidgetValue.resolve() & resolveMask);
current.resolve(current.resolve() & ~resolveMask);
current.resolve(oldWidgetValue);
current.resolve(current.resolve() | oldWidgetValue.resolve());
return current;
}
};
QHash<const QWidget *, Tampered<QPalette>> customPaletteWidgets;
QHash<const QWidget *, Tampered<QFont>> customFontWidgets;
};
template <typename T>
class QTypeInfo<QStyleSheetCaches::Tampered<T>>
: QTypeInfoMerger<QStyleSheetCaches::Tampered<T>, T> {};
#endif // QTSTYLESHEET_H
|
00659bb3f80c7f40758b5fc38e8ca8572c61c7f9 | eb779e991ad97917a31e7e63c03d7ca5b8b5c34b | /1093 - Ghajini.cpp | 9005a2f265e3ef52503cf7f77b10970e2cf9cbde | [] | no_license | NaimHasanPappu/LightOJ | 48c6e51503080573c5f6be47a987e9a25bf3c5e8 | 8979baad975d3f2f0f0d8604ba370c4c40f92b59 | refs/heads/master | 2021-06-25T04:03:53.785018 | 2020-10-26T23:49:16 | 2020-10-26T23:49:16 | 142,655,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 845 | cpp | 1093 - Ghajini.cpp | #include<bits/stdc++.h>
using namespace std;
#define lli long long int
#define ulli unsigned long long int
#define Pi 3.14159265358979323846264338327950288419716939937510
int main(){
int T;
cin>>T;
for(int t=0; t<T; t++){
int n,d;
cin>>n>>d;
deque <int> a;
multiset <int> b;
int result = -1;
for(int i=1; i<=n; i++){
int j;
cin>>j;
a.push_back(j);
b.insert(j);
if(i>d){
j = a[0];
a.pop_front();
auto k = b.find(j);
b.erase(k);
}
int x = (*(--b.end()))-(*b.begin());
result = max(result,x);
}
cout<<"Case "<<t+1<<": "<<result<<endl;
}
}
|
44d30f68c1f359bff28163889495694302f5ab48 | dcb7d734f14e5ca341016e0482153219978f3617 | /src/python/cgp2d/cells/py_cell1.hxx | cadd6a1bb55d713705067f0d8aa9897936b699f9 | [] | no_license | DerThorsten/cgp2d | c029c2c55da563ee7f36783fa979be61972134d5 | deb5e6e60343db4eafa7a7f3e66e3b93cc1210cc | refs/heads/master | 2021-06-19T19:25:43.597532 | 2016-12-24T13:42:18 | 2016-12-24T13:42:18 | 13,634,530 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45 | hxx | py_cell1.hxx |
namespace cgp2d{
void export_cell1();
}
|
bfc22a6207e8cf679faf678a1e47843edc37eaba | c254f27c6546bf673af980ca20b98065f70d2af0 | /Tree/666-Path Sum IV/path_sum_iv.cpp | 60f22e570b7c5a71aecf7ca4daebd67f418aa78b | [] | no_license | JiaqiHe/Leetcode | d197f0fe5a57f44b83330c8a1c50896029321328 | f62bf39795321114dec782f33bddd94388388d11 | refs/heads/master | 2021-07-17T01:19:40.410619 | 2018-11-20T23:53:13 | 2018-11-20T23:53:13 | 106,220,325 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 914 | cpp | path_sum_iv.cpp | class Solution {
public:
void dfs(int dict[], int &res, int cur_res, int i){
cur_res += dict[i];
if(i>7 || (dict[2*i] == -1 && dict[2*i+1] == -1)){
res += cur_res;
cout<<res<<endl;
return;
}
if(dict[2*i] != -1) dfs(dict, res, cur_res, 2*i);
if(dict[2*i+1] != -1) dfs(dict, res, cur_res, 2*i+1);
return;
}
int pathSum(vector<int>& nums) {
int res = 0;
if(nums.empty()) return res;
int dict[16] = {-1};
for(int i = 0; i < 16; i ++){
dict[i] = -1;
}
for(int i = 0; i < nums.size(); i ++){
int hundreds = nums[i]/100;
int tens = nums[i]/10%10;
int units = nums[i]%10;
dict[(int)pow(2, hundreds-1)+tens-1] = units;
}
int cur_res = 0;
dfs(dict, res, cur_res, 1);
return res;
}
};
|
848959cd6ab60da9ac4991499fb71ea91549eb44 | a5a99f646e371b45974a6fb6ccc06b0a674818f2 | /L1Trigger/DTSectorCollector/src/DTSectCollPhCand.cc | d6b95d635f6c90c9b8ed58263df7ce7c5c64c69b | [
"Apache-2.0"
] | permissive | cms-sw/cmssw | 4ecd2c1105d59c66d385551230542c6615b9ab58 | 19c178740257eb48367778593da55dcad08b7a4f | refs/heads/master | 2023-08-23T21:57:42.491143 | 2023-08-22T20:22:40 | 2023-08-22T20:22:40 | 10,969,551 | 1,006 | 3,696 | Apache-2.0 | 2023-09-14T19:14:28 | 2013-06-26T14:09:07 | C++ | UTF-8 | C++ | false | false | 3,353 | cc | DTSectCollPhCand.cc | //-------------------------------------------------
//
// Class: DTSectCollPhCand.cpp
//
// Description: A Sector Collector Phi Candidate
//
//
// Author List:
// S.Marcellini D.Bonacorsi
// Modifications:
// 11/06 C. Battilana: Class moved from Cand to PhCand
//
//
//--------------------------------------------------
//-----------------------
// This Class's Header --
//-----------------------
#include "L1Trigger/DTSectorCollector/interface/DTSectCollPhCand.h"
//---------------
// C++ Headers --
//---------------
#include <iostream>
//----------------
// Constructors --
//---------------- // SM double TSM
DTSectCollPhCand::DTSectCollPhCand(DTSC* tsc, const DTChambPhSegm* tsmsegm, int ifs) : _tsc(tsc), _tsmsegm(tsmsegm) {
_dataword.one(); // reset dataword to 0x1ff
if (ifs == 1)
_dataword.unset(14); // set bit 14 (0=first, 1=second tracks)
}
DTSectCollPhCand::DTSectCollPhCand() {}
//--------------
// Destructor --
//--------------
DTSectCollPhCand::~DTSectCollPhCand() {}
//--------------
// Operations --
//--------------
DTSectCollPhCand& DTSectCollPhCand::operator=(const DTSectCollPhCand& tsccand) {
if (this != &tsccand) {
_tsc = tsccand._tsc;
_tsmsegm = tsccand._tsmsegm;
}
return *this;
}
void DTSectCollPhCand::clear() {
_tsmsegm = nullptr;
_dataword.one();
// std::cout << " clear dataword : " << _dataword.print() << std::endl;
}
int DTSectCollPhCand::CoarseSync() const {
int sect = _tsmsegm->ChamberId().sector();
if (sect < 13)
return config()->CoarseSync(_tsmsegm->ChamberId().station());
else
return config()->CoarseSync(5);
}
// SM double TSM: remove datawordbk and replace it with dataword
void DTSectCollPhCand::setBitsSectColl() {
clearBitsSectColl();
if (abs(_tsmsegm->DeltaPsiR()) > 1024) { // Check phiB within 10 bits range
std::cout << "DTSectCollPhCand::setBitsSectColl phiB outside valid range: " << _tsmsegm->DeltaPsiR();
std::cout << " deltaPsiR set to 512" << std::endl;
} else {
// SM double TSM
// assign preview in dataword (common to any other assignment)
_dataword.assign(0, 10, abs(_tsmsegm->DeltaPsiR()));
//
int a2 = 12;
int a1 = 11;
int a0 = 10;
if (_tsmsegm->code() == 6) {
_dataword.unset(a2);
_dataword.unset(a1);
_dataword.unset(a0);
} // 1-000
if (_tsmsegm->code() == 5) {
_dataword.unset(a2);
_dataword.unset(a1);
} // 1-001
if (_tsmsegm->code() == 4) {
_dataword.unset(a2);
_dataword.unset(a0);
} // 1-010
if (_tsmsegm->code() == 3) {
_dataword.unset(a1);
} // 1-101
if (_tsmsegm->code() == 2) {
_dataword.unset(a1);
_dataword.unset(a0);
} // 1-100
// if( _tsmsegm->code()==1 ) no unset needed => 111
if (_tsmsegm->code() == 0) {
_dataword.unset(a0);
} // 1-110
}
}
void DTSectCollPhCand::print() const {
std::cout << "Sector Collector Phi Candidate: " << std::endl;
if (_dataword.element(14) == 0) {
std::cout << "First track type" << std::endl;
} else {
std::cout << "Second track type" << std::endl;
}
std::cout << " code=" << _tsmsegm->pvCode();
std::cout << " dataword=";
_dataword.print();
// SM double TSM remove datawordbk section
std::cout << " SC step=" << CoarseSync() + _tsmsegm->step();
std::cout << std::endl;
}
|
28827f506b6920db2ca38bc625fb3669ca7eeaa3 | 40b0eb60a03e6e7d44655406aa72b84cd0fa62d6 | /BACKTRACKING ON MATRIX.cpp | 0a83275e92ce1509e41cbc6295b360f710a09620 | [] | no_license | welersonMelo/Algorithm-Design-Projects | 017b21f047d37bad2307d737eb7c8bcf144a172d | 5934ea95cbc5b9034d04ca53075dd7889fe17119 | refs/heads/master | 2021-05-08T08:24:35.232113 | 2020-02-27T13:27:53 | 2020-02-27T13:27:53 | 107,026,490 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,620 | cpp | BACKTRACKING ON MATRIX.cpp | /*
Given C matrix N X M with walls(1), free spaces(0) and a start space (X) find the path to get out of the matrix and print it
Solution: Using a backtracking algortihm based on flood fill graph algorithm
IN:
C
N M
Matrix ...
2
5 4
1 1 1 1 1
1 0 0 0 1
1 0 X 0 1
1 1 0 1 1
3 4
1 1 1
1 X 1
1 0 1
OUT
OBS: (INICIO = START, SAIDA = END, D = RIGHT, F = FRONT, E = LEFT, T = BACK, BT = BACKTRACKING, SEM SAIDA = NO ESCAPE)
L0:
INICIO [2,2]
D [2,2]->[2,3]
F [2,3]->[1,3]
E [1,3]->[1,2]
E [1,2]->[1,1]
T [1,1]->[2,1]
BT [1,1]<-[2,1]
BT [1,2]<-[1,1]
BT [1,3]<-[1,2]
BT [2,3]<-[1,3]
BT [2,2]<-[2,3]
T [2,2]->[3,2]
SAIDA [3,2]
L1:
INICIO [1,1]
T [1,1]->[2,1]
BT [1,1]<-[2,1]
SEM SAIDA
*/
#include<bits/stdc++.h>
using namespace std;
char a[102][102];
int begI = 0, begJ = 0, n, m;
bool encontrou;
FILE *in, *out;
//IF IS OUT OF BOUND OF THE MATRIX
bool isOut(int i, int j){
return (i < 0 || i >= n || j < 0 || j >= m);
}
int dir1[] = {0, -1, 0, 1};
int dir2[] = {1, 0 , -1, 0};
char dir[] = {'D', 'F', 'E', 'T'};
//FLOOD FILL ALGORITHM FOR BACKTRACKING IN MATRIX AND PRINT THE PATH
void flood(int i, int j){
for(int k = 0; k < 4; k++){
if(!isOut(i + dir1[k], j + dir2[k])){
if(a[i + dir1[k]][j + dir2[k]] != '1'){
if(!encontrou)
fprintf(out, "%c [%d,%d]->[%d,%d]\n", dir[k] ,i, j, i + dir1[k], j + dir2[k]);
a[i + dir1[k]][j + dir2[k]] = '1';
flood(i + dir1[k], j + dir2[k]);
if(!encontrou)
fprintf(out, "BT [%d,%d]<-[%d,%d]\n", i, j, i + dir1[k], j + dir2[k]);
}
}else{
encontrou = true;
fprintf(out, "SAIDA [%d,%d]\n",i, j);
return;
}
}
}
//MAIN FUNCTION
int main(int argc, char* argv[]){
in = fopen(argv[1], "r");
out = fopen(argv[2], "w+");
int c, caso = 0;
char aux;
fscanf(in, "%d", &c);
//READING C MATRIX
while(c--){
fscanf(in, "%d%d", &m, &n);
fscanf(in, "%c", &aux);
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
fscanf(in, "%c ", &a[i][j]);
if(a[i][j] == 'X'){
begI = i;
begJ = j;
a[i][j] = '1';
}
}
}
encontrou = false;
fprintf(out, "L%d:\n", caso++);
fprintf(out, "INICIO [%d,%d]\n", begI, begJ);
flood(begI, begJ);
if(!encontrou)
fprintf(out, "SEM SAIDA\n");
}
return 0;
}
|
deb67537589c8175fe0a023d5cf4e130ffa09ac3 | b62f9e40297b9ba7fac22b835d25f5bf4608372a | /Benda.h | fc9eb9a16f46b4df9483a00972272aa910fed1c0 | [] | no_license | thareqmy/ArkavQuarium | 62196859e1c768ed804affdb917d2922ff29767a | 8c674296b58b901466539f77414dc2f93e2add25 | refs/heads/master | 2021-04-04T05:10:42.530785 | 2018-03-15T16:04:20 | 2018-03-15T16:04:20 | 124,706,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 652 | h | Benda.h | #ifndef BENDA_H
#define BENDA_H
#include "
#include <iostream>
using namespace std;
class Benda {
private:
int x;
int y;
int speed;
public:
Benda(int,int,int);
virtual ~Benda();
void setX(int);
void setY(int);
void setSpeed(int);
void getX() const;
void getY() const;
void getSpeed() const;
void moveUp();
void moveDown();
void moveRight();
void moveLeft();
virtual void move() = 0;
virtual void nextTurn(LinkedList<Guppy>&, LinkedList<Piranha>&,LinkedList<MakananIkan>&,LinkedList<Koin>&,Siput&) = 0;
};
#endif
|
607213284d609de7dc91fa7070b055bb780bd0e2 | 7a9220b2f1366389bf502158a9bbea06195af988 | /Autometer.ino | dc1610ca0a0ec2ddfdec1fcc41bf337444851126 | [] | no_license | faquin/Autometer | 97ba567ce9bc80e70d420b0fe35bd5cb566d76e4 | 3fe8aaf0363ef8adbab906df8ffe54fbff553e56 | refs/heads/master | 2021-01-11T14:43:52.743532 | 2017-01-31T22:23:34 | 2017-01-31T22:23:34 | 80,202,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,380 | ino | Autometer.ino | #include <RBD_Timer.h>
#include <RBD_Button.h>
#include <SoftwareSerial.h>
#include <TimerOne.h>
#include <avr/sleep.h>
/*
Version10 : Same as Version 6 for Arduino Micro.
The user press the side button to increment a timer value. When the rotating handle is down, the counter starts to decrease.
When it reaches 0, the buzzer activates until the roating handle is up again. This also shutdown the display.
*/
#define digitOFF 10
int pinA0 = A0;
int pinA1 = A1;
int pinA2 = A2;
int pinA3 = A4;
int pinSegmA = 7;
int pinSegmB = 8;
int pinSegmC = 9;
int pinSegmD = 10;
int pinSegmE = 11;
int pinSegmF = 12;
int pinSegmG = 1;
int pinEN = 0;
int pinButtonHandle = 4;
int pinButtonDP = 2;
int pinBuzzer = 3;
byte numbers[15][7] = {
{0, 0, 0, 0, 0, 0, 1}, //zero
{1, 0, 0, 1, 1, 1, 1}, //one
{0, 0, 1, 0, 0, 1, 0}, //two
{0, 0, 0, 0, 1, 1, 0}, //three
{1, 0, 0, 1, 1, 0, 0}, //four
{0, 1, 0, 0, 1, 0, 0}, //five
{0, 1, 0, 0, 0, 0, 0}, //six
{0, 0, 0, 1, 1, 1, 1}, //seven
{0, 0, 0, 0, 0, 0, 0}, //eight
{0, 0, 0, 0, 1, 0, 0}, //nine
{1, 1, 1, 1, 1, 1, 1}, //off
{0, 0, 0, 1, 0, 0, 0}, // A
{0, 1, 1, 0, 0, 0, 1}, // C
{0, 1, 1, 0, 0, 0, 0}, // E
{0, 1, 1, 1, 0, 0, 0} // F
}; // manquent: H, L, n, o, P, U,
int DigitValue[13];
int isrActiveDigit = 0;
int count = 0;
int minutes = 0;
int secondes = 0;
//SoftwareSerial SerialParticle(A5, A4); // RX, TX
RBD::Button button_Handle(pinButtonHandle);
RBD::Button button_DP(pinButtonDP);
RBD::Timer timer_countdown(1000); // triggers every seconds // 250 for 4Mhz instead of 1000
void setDigitValue(int digit, int value) {
// digit is from 0 to 12
if (0 <= digit && digit < 13) {
if (0 <= value && value < 15) {
DigitValue[digit] = value;
}
}
}
void setDigitChar(int digit, char character) {
// digit is from 0 to 12
if (0 <= digit && digit < 13) {
switch (character) {
case 'A':
DigitValue[digit] = 11;
break;
case 'C':
DigitValue[digit] = 12;
break;
case 'E':
DigitValue[digit] = 13;
break;
case 'F':
DigitValue[digit] = 14;
break;
}
}
}
void DigitOFF(int digit) {
if (0 <= digit && digit < 13) {
DigitValue[digit] = digitOFF;
}
}
void setLineValue(int line, int digit1, int digit2, int digit3, int digit4, int digit5) {
// line is 1 or 2 or 3
if (line == 1) {
setDigitValue(4, digit1);
setDigitValue(3, digit2);
setDigitValue(2, digit3);
setDigitValue(1, digit4);
setDigitValue(0, digit5);
}
else if (line == 2) {
setDigitValue(8, digit1);
setDigitValue(7, digit2);
setDigitValue(6, digit3);
setDigitValue(5, digit4);
}
else if (line == 3) {
setDigitValue(12, digit1);
setDigitValue(11, digit2);
setDigitValue(10, digit3);
setDigitValue(9, digit4);
}
}
void setLineStr(int line, String strDigits) {
// for line1, strDigit is 5 char (+1). For the other lines, StrDigit is 4 char (+1)
int a, b, c, d, e;
if (strDigits[0] == 32) // 32 is " " in ASCII
a = digitOFF;
else
a = strDigits[0] - 48; //-48 because "0" is ASCII code 0x48
if (strDigits[1] == 32)
b = digitOFF;
else
b = strDigits[1] - 48;
if (strDigits[2] == 32)
c = digitOFF;
else
c = strDigits[2] - 48;
if (strDigits[3] == 32)
d = digitOFF;
else
d = strDigits[3] - 48;
if (strDigits[4] == 32)
e = digitOFF;
else
e = strDigits[4] - 48;
setLineValue(line, a, b, c, d, e);
}
void wakeUpNow (void) {
// do nothing: we are awake that's all!
}
void goToSleep() {
setLineStr(1, " ");
setLineStr(2, " ");
setLineStr(3, " ");
delay(770);
set_sleep_mode(SLEEP_MODE_PWR_DOWN);
sleep_enable();
attachInterrupt(digitalPinToInterrupt(pinButtonDP), wakeUpNow, LOW);
sleep_mode();
sleep_disable(); // first thing after waking from sleep:
detachInterrupt(digitalPinToInterrupt(pinButtonDP));
}
void setup() {
Serial.begin(9600);
//SerialParticle.begin(9600);
pinMode(pinA0, OUTPUT); digitalWrite(pinA0, 0);
pinMode(pinA1, OUTPUT); digitalWrite(pinA1, 0);
pinMode(pinA2, OUTPUT); digitalWrite(pinA2, 0);
pinMode(pinA3, OUTPUT); digitalWrite(pinA3, 0);
pinMode(pinSegmA, OUTPUT);
pinMode(pinSegmB, OUTPUT);
pinMode(pinSegmC, OUTPUT);
pinMode(pinSegmD, OUTPUT);
pinMode(pinSegmE, OUTPUT);
pinMode(pinSegmF, OUTPUT);
pinMode(pinSegmG, OUTPUT);
pinMode(pinEN, OUTPUT);
pinMode(pinBuzzer, OUTPUT);
digitalWrite(pinBuzzer, HIGH); // switch off buzzer
Timer1.initialize(770); // set a timer of length 770 microseconds (=100Hz/13 displays) // for 4Mhz quartz value is 192
Timer1.attachInterrupt( isrUpdate7Seg ); // attach the service routine here
setLineStr(1, " ");
setLineStr(2, " ");
setLineStr(3, " ");
//Serial.println("application starting v10.0");
//delay(1000);
goToSleep();
}
void loop() {
if (button_Handle.onReleased()) {
timer_countdown.stop();
// setLineStr(1, " 0000"); useless since we are going to sleep just after
minutes = 0;
secondes = 0;
goToSleep();
}
if (button_Handle.isReleased()) {
if (button_DP.onPressed()) { // increment the counter at beginning
if (minutes < 60) {
minutes++;
//secondes+=10; //debug
setDigitValue(3, minutes / 10);
setDigitValue(2, minutes % 10);
setDigitValue(1, secondes / 10);
setDigitValue(0, secondes % 10);
}
}
}
if (button_Handle.onPressed()) {
timer_countdown.restart(); // launch the timer
}
if (button_Handle.isPressed()) {
if (timer_countdown.onRestart()) {
if (secondes > 0) {
secondes--;
}
else {
if (minutes > 0) {
minutes--;
secondes = 59;
}
else {
timer_countdown.stop(); // countdown is expired
}
}
setDigitValue(3, minutes / 10);
setDigitValue(2, minutes % 10);
setDigitValue(1, secondes / 10);
setDigitValue(0, secondes % 10);
}
if (timer_countdown.isStopped()) { // as long as the countdown is stopped whilehandle is activated, buzzzz
digitalWrite(pinBuzzer, LOW);
delay(100);
digitalWrite(pinBuzzer, HIGH);
delay(3000); // let the buzzer stop
}
}
/*Serial.print("min=");
Serial.print(minutes);
Serial.print(" sec=");
Serial.println(secondes);
*/
}
/// --------------------------
/// Custom ISR Timer Routine
/// --------------------------
void isrUpdate7Seg()
{
digitalWrite(pinEN, HIGH); // disable display during bits modifications
isrActiveDigit = (isrActiveDigit + 1) % 13;
digitalWrite(pinA0, bitRead(isrActiveDigit, 0));
digitalWrite(pinA1, bitRead(isrActiveDigit, 1));
digitalWrite(pinA2, bitRead(isrActiveDigit, 2));
digitalWrite(pinA3, bitRead(isrActiveDigit, 3));
digitalWrite(pinSegmA, numbers[DigitValue[isrActiveDigit]][0]);
digitalWrite(pinSegmB, numbers[DigitValue[isrActiveDigit]][1]);
digitalWrite(pinSegmC, numbers[DigitValue[isrActiveDigit]][2]);
digitalWrite(pinSegmD, numbers[DigitValue[isrActiveDigit]][3]);
digitalWrite(pinSegmE, numbers[DigitValue[isrActiveDigit]][4]);
digitalWrite(pinSegmF, numbers[DigitValue[isrActiveDigit]][5]);
digitalWrite(pinSegmG, numbers[DigitValue[isrActiveDigit]][6]);
digitalWrite(pinEN, LOW); // enable display
}
|
e6258df5013455d04699d30ef1a523ef3d88bda4 | 4a31e71683bf15025327d7fc84a6165a9db5c4ee | /src/task2.cpp | 5251c3ae74347b19c8a6f32cb52f3209610682d2 | [] | no_license | ShuvalovaNastya/C-lab-2 | 2022444913146a6dc13ca266b6b7680801c1ad60 | eca5072b072fe6c3913d201201a5aacdb8e58da9 | refs/heads/master | 2020-04-25T23:25:06.594689 | 2019-02-28T16:48:48 | 2019-02-28T16:48:48 | 173,144,874 | 0 | 0 | null | 2019-02-28T16:15:35 | 2019-02-28T16:15:34 | null | UTF-8 | C++ | false | false | 145 | cpp | task2.cpp | #include "task2.h"
int turn(int value, int secret)
{
if (value > secret)
return 1;
else if (value < secret)
return -1;
else return 0;
} |
86061cbd07e117023854e63c20486a82c25ecde1 | d54f7d0b8e4eadb53fb2773fe3bde9bb2a440c66 | /include/clpp/device_type.hpp | f09a68c3a14e57a15ee0b0ad55ac3c4bbb760d30 | [
"MIT"
] | permissive | Robbepop/clpp | 62725d85e606c6f5d6fe70e4b0ad5dde517a5946 | 7723bb68c55d861ac2135ccf84d3c5b92b2b2b50 | refs/heads/master | 2021-01-10T15:27:14.662314 | 2015-12-11T15:15:03 | 2015-12-11T15:15:03 | 36,579,333 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 427 | hpp | device_type.hpp | #ifndef CLPP_DEVICE_TYPE_H
#define CLPP_DEVICE_TYPE_H
#include "clpp/detail/common.hpp"
namespace cl {
enum class DeviceType : cl_device_type {
#if defined(CL_VERSION_1_2)
custom = CL_DEVICE_TYPE_CUSTOM,
#endif
defaultType = CL_DEVICE_TYPE_DEFAULT,
cpu = CL_DEVICE_TYPE_CPU,
gpu = CL_DEVICE_TYPE_GPU,
accelerator = CL_DEVICE_TYPE_ACCELERATOR,
all = CL_DEVICE_TYPE_ALL
};
}
#endif
|
34b8188019e880e268f73cf3612b08360cf149e1 | 08f03d6a390bccfb2052870f87693e3fdb4c6ca0 | /DeferredTasksExecutor.cpp | ff12d279947ed320826a13b29b40e1b4b5823f6e | [] | no_license | alexandr8s/DeferredTasks | 4dc1dc1c3ccc23358a3968dbd6c830a2a783e8cc | fa22c382290ec896562319396c22f45fb0fed56c | refs/heads/master | 2020-03-22T14:36:36.696048 | 2018-07-17T17:25:33 | 2018-07-17T17:25:33 | 140,192,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,305 | cpp | DeferredTasksExecutor.cpp | #include "DeferredTasksExecutor.h"
template <class T>
DeferredTasksExecutor<T>::DeferredTasksExecutor(int thread_count)
{
cond_ready = false;
destroy_threads = false;
for (int i = 0; i < thread_count; i++)
{
threads.emplace_back(std::thread(&DeferredTasksExecutor::worker, this));
}
}
template <class T>
DeferredTasksExecutor<T>::~DeferredTasksExecutor()
{
destroy_threads = true;
active_cond.notify_all();
for (auto & t : threads)
t.join();
}
template <class T>
void DeferredTasksExecutor<T>::submit(std::packaged_task<T> task)
{
std::lock_guard<std::mutex> lock(m_qeue);
tasks.emplace(std::move(task));
cond_ready = true;
active_cond.notify_all();
}
template <class T>
void DeferredTasksExecutor<T>::worker()
{
while (!destroy_threads)
{
std::unique_lock<std::mutex> lock(m_active);
active_cond.wait(lock, [this]() {return cond_ready || destroy_threads; });
if (destroy_threads) break;
std::packaged_task<T> task;
m_qeue.lock();
if(!tasks.empty())
{
task = std::move(tasks.front());
tasks.pop();
}
else
{
cond_ready = false;
continue;
}
m_qeue.unlock();
task();
}
} |
781f715d6dc30479375769f71f8ee6484378881b | 40f6f140567a45f594991602c20d02ffa602206c | /nhn_next_IocpServer/IocpNetLib/Player.cpp | dc6d6ac1d952c58e8038b7c715798e8aa336e178 | [
"MIT"
] | permissive | sonyeo/com2us_cppNetStudy_work | 0f169c0dd66b81d4ab1ffcb3b27659c2d67a4ad7 | 992d4ecfe66b74e6547d108f570abb58c4294015 | refs/heads/master | 2020-12-13T05:50:58.021219 | 2019-10-29T05:53:29 | 2019-10-29T05:53:29 | 234,328,099 | 1 | 0 | MIT | 2020-01-16T13:38:16 | 2020-01-16T13:38:15 | null | UHC | C++ | false | false | 2,548 | cpp | Player.cpp | #include "ClientSession.h"
#include "Player.h"
Player::Player(ClientSession* session) : mSession(session)
{
PlayerReset();
}
Player::~Player()
{
}
void Player::PlayerReset()
{
FastSpinlockGuard criticalSection(mPlayerLock);
memset(mPlayerName, 0, sizeof(mPlayerName));
memset(mComment, 0, sizeof(mComment));
mPlayerId = -1;
mIsValid = false;
mPosX = mPosY = mPosZ = 0;
}
//void Player::RequestLoad(int pid)
//{
// LoadPlayerDataContext* context = new LoadPlayerDataContext(mSession, pid);
// GDatabaseManager->PostDatabsaseRequest(context);
//}
//
//void Player::ResponseLoad(int pid, float x, float y, float z, bool valid, wchar_t* name, wchar_t* comment)
//{
// FastSpinlockGuard criticalSection(mPlayerLock);
//
// mPlayerId = pid;
// mPosX = x;
// mPosY = y;
// mPosZ = z;
// mIsValid = valid;
//
// wcscpy_s(mPlayerName, name);
// wcscpy_s(mComment, comment);
//
// //wprintf_s(L"PID[%d], X[%f] Y[%f] Z[%f] NAME[%s] COMMENT[%s]\n", mPlayerId, mPosX, mPosY, mPosZ, mPlayerName, mComment);
//}
//
//void Player::RequestUpdatePosition(float x, float y, float z)
//{
// //todo: DB에 플레이어 위치를 x,y,z로 업데이트 요청하기
//}
//
//void Player::ResponseUpdatePosition(float x, float y, float z)
//{
// FastSpinlockGuard criticalSection(mPlayerLock);
// mPosX = x;
// mPosY = y;
// mPosZ = z;
//}
//void Player::RequestUpdateComment(const wchar_t* comment)
//{
// UpdatePlayerCommentContext* context = new UpdatePlayerCommentContext(mSession, mPlayerId);
// context->SetNewComment(comment);
// GDatabaseManager->PostDatabsaseRequest(context);
//}
//
//void Player::ResponseUpdateComment(const wchar_t* comment)
//{
// FastSpinlockGuard criticalSection(mPlayerLock);
// wcscpy_s(mComment, comment);
//}
//
//void Player::RequestUpdateValidation(bool isValid)
//{
// UpdatePlayerValidContext* context = new UpdatePlayerValidContext(mSession, mPlayerId);
// context->mIsValid = isValid;
// GDatabaseManager->PostDatabsaseRequest(context);
//}
//
//void Player::ResponseUpdateValidation(bool isValid)
//{
// FastSpinlockGuard criticalSection(mPlayerLock);
// mIsValid = isValid;
//}
//void Player::TestCreatePlayerData(const wchar_t* newName)
//{
// //todo: DB스레드풀에 newName에 해당하는 플레이어 생성 작업을 수행시켜보기
//}
//void Player::TestDeletePlayerData(int playerId)
//{
// //todo: DB스레드풀에 playerId에 해당하는 플레이어 생성 삭제 작업을 수행시켜보기
//}
|
e2a70dfca1d32f439425d0a2143a919256eed237 | 5fa325e0dd6d12d8a2fbaa01c792c0130c33cc5a | /src/runtime.cc | af7c9bb0009b60b20965ec09ec242990bf00b96a | [
"MIT"
] | permissive | celerity/celerity-runtime | 7fbc830cc8722d92a24188be99f6d6416cf4532c | 0a282f598b3611cff9fc65c37c8bd0cd5efa5a90 | refs/heads/master | 2023-09-03T13:04:00.002793 | 2023-08-28T10:04:32 | 2023-08-29T13:44:21 | 197,273,903 | 123 | 16 | MIT | 2023-09-14T11:04:28 | 2019-07-16T22:03:07 | C++ | UTF-8 | C++ | false | false | 10,053 | cc | runtime.cc | #include "runtime.h"
#include <queue>
#include <string>
#include <unordered_map>
#ifdef _MSC_VER
#include <process.h>
#else
#include <unistd.h>
#endif
#include <mpi.h>
#if CELERITY_USE_MIMALLOC
// override default new/delete operators to use the mimalloc memory allocator
#include <mimalloc-new-delete.h>
#endif
#include "affinity.h"
#include "buffer.h"
#include "buffer_manager.h"
#include "cgf_diagnostics.h"
#include "command_graph.h"
#include "distributed_graph_generator.h"
#include "executor.h"
#include "host_object.h"
#include "log.h"
#include "mpi_support.h"
#include "named_threads.h"
#include "print_graph.h"
#include "scheduler.h"
#include "task_manager.h"
#include "user_bench.h"
#include "utils.h"
#include "version.h"
namespace celerity {
namespace detail {
std::unique_ptr<runtime> runtime::instance = nullptr;
void runtime::mpi_initialize_once(int* argc, char*** argv) {
assert(!m_mpi_initialized);
int provided;
MPI_Init_thread(argc, argv, MPI_THREAD_MULTIPLE, &provided);
assert(provided == MPI_THREAD_MULTIPLE);
m_mpi_initialized = true;
}
void runtime::mpi_finalize_once() {
assert(m_mpi_initialized && !m_mpi_finalized && (!m_test_mode || !instance));
MPI_Finalize();
m_mpi_finalized = true;
}
void runtime::init(int* argc, char** argv[], device_or_selector user_device_or_selector) {
assert(!instance);
instance = std::unique_ptr<runtime>(new runtime(argc, argv, user_device_or_selector));
}
runtime& runtime::get_instance() {
if(instance == nullptr) { throw std::runtime_error("Runtime has not been initialized"); }
return *instance;
}
static auto get_pid() {
#ifdef _MSC_VER
return _getpid();
#else
return getpid();
#endif
}
static std::string get_version_string() {
using namespace celerity::version;
return fmt::format("{}.{}.{} {}{}", major, minor, patch, git_revision, git_dirty ? "-dirty" : "");
}
static const char* get_build_type() {
#if defined(CELERITY_DETAIL_ENABLE_DEBUG)
return "debug";
#else
return "release";
#endif
}
static const char* get_mimalloc_string() {
#if CELERITY_USE_MIMALLOC
return "using mimalloc";
#else
return "using the default allocator";
#endif
}
static std::string get_sycl_version() {
#if defined(__HIPSYCL__) || defined(__HIPSYCL_TRANSFORM__)
return fmt::format("hipSYCL {}.{}.{}", HIPSYCL_VERSION_MAJOR, HIPSYCL_VERSION_MINOR, HIPSYCL_VERSION_PATCH);
#elif CELERITY_DPCPP
return "DPC++ / Clang " __clang_version__;
#else
#error "unknown SYCL implementation"
#endif
}
runtime::runtime(int* argc, char** argv[], device_or_selector user_device_or_selector) {
if(m_test_mode) {
assert(m_test_active && "initializing the runtime from a test without a runtime_fixture");
} else {
mpi_initialize_once(argc, argv);
}
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
m_num_nodes = world_size;
m_cfg = std::make_unique<config>(argc, argv);
if(m_cfg->is_dry_run()) { m_num_nodes = m_cfg->get_dry_run_nodes(); }
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
m_local_nid = world_rank;
spdlog::set_pattern(fmt::format("[%Y-%m-%d %H:%M:%S.%e] [{:0{}}] [%^%l%$] %v", world_rank, int(ceil(log10(world_size)))));
#ifndef __APPLE__
if(const uint32_t cores = affinity_cores_available(); cores < min_cores_needed) {
CELERITY_WARN("Celerity has detected that only {} logical cores are available to this process. It is recommended to assign at least {} "
"logical cores. Performance may be negatively impacted.",
cores, min_cores_needed);
}
#endif
m_user_bench = std::make_unique<experimental::bench::detail::user_benchmarker>(*m_cfg, static_cast<node_id>(world_rank));
cgf_diagnostics::make_available();
m_h_queue = std::make_unique<host_queue>();
m_d_queue = std::make_unique<device_queue>();
// Initialize worker classes (but don't start them up yet)
m_buffer_mngr = std::make_unique<buffer_manager>(*m_d_queue, [this](buffer_manager::buffer_lifecycle_event event, buffer_id bid) {
switch(event) {
case buffer_manager::buffer_lifecycle_event::registered: handle_buffer_registered(bid); break;
case buffer_manager::buffer_lifecycle_event::unregistered: handle_buffer_unregistered(bid); break;
default: assert(false && "Unexpected buffer lifecycle event");
}
});
m_reduction_mngr = std::make_unique<reduction_manager>();
m_host_object_mngr = std::make_unique<host_object_manager>();
m_task_mngr = std::make_unique<task_manager>(m_num_nodes, m_h_queue.get());
m_exec = std::make_unique<executor>(m_num_nodes, m_local_nid, *m_h_queue, *m_d_queue, *m_task_mngr, *m_buffer_mngr, *m_reduction_mngr);
m_cdag = std::make_unique<command_graph>();
auto dggen = std::make_unique<distributed_graph_generator>(m_num_nodes, m_local_nid, *m_cdag, *m_task_mngr);
m_schdlr = std::make_unique<scheduler>(is_dry_run(), std::move(dggen), *m_exec);
m_task_mngr->register_task_callback([this](const task* tsk) { m_schdlr->notify_task_created(tsk); });
CELERITY_INFO("Celerity runtime version {} running on {}. PID = {}, build type = {}, {}", get_version_string(), get_sycl_version(), get_pid(),
get_build_type(), get_mimalloc_string());
m_d_queue->init(*m_cfg, user_device_or_selector);
}
runtime::~runtime() {
m_schdlr.reset();
m_cdag.reset();
m_exec.reset();
m_task_mngr.reset();
m_reduction_mngr.reset();
m_host_object_mngr.reset();
// All buffers should have unregistered themselves by now.
assert(!m_buffer_mngr->has_active_buffers());
m_buffer_mngr.reset();
m_d_queue.reset();
m_h_queue.reset();
cgf_diagnostics::teardown();
m_user_bench.reset();
if(!m_test_mode) { mpi_finalize_once(); }
}
void runtime::startup() {
if(m_is_active) { throw runtime_already_started_error(); }
m_is_active = true;
m_schdlr->startup();
m_exec->startup();
}
void runtime::shutdown() {
assert(m_is_active);
m_is_shutting_down = true;
const auto shutdown_epoch = m_task_mngr->generate_epoch_task(epoch_action::shutdown);
m_schdlr->shutdown();
m_task_mngr->await_epoch(shutdown_epoch);
m_exec->shutdown();
m_d_queue->wait();
m_h_queue->wait();
if(spdlog::should_log(log_level::trace)) {
const auto print_max_nodes = m_cfg->get_graph_print_max_verts();
if(m_local_nid == 0) { // It's the same across all nodes
const auto graph_str = m_task_mngr->print_graph(print_max_nodes);
if(graph_str.has_value()) {
CELERITY_TRACE("Task graph:\n\n{}\n", *graph_str);
} else {
CELERITY_WARN("Task graph with {} vertices exceeds CELERITY_GRAPH_PRINT_MAX_VERTS={}. Skipping GraphViz output",
m_task_mngr->get_current_task_count(), print_max_nodes);
}
}
{
const auto graph_str = m_cdag->print_graph(m_local_nid, print_max_nodes, *m_task_mngr, m_buffer_mngr.get());
if(!graph_str.has_value()) {
CELERITY_WARN("Command graph with {} vertices exceeds CELERITY_GRAPH_PRINT_MAX_VERTS={}. Skipping GraphViz output", m_cdag->command_count(),
print_max_nodes);
}
// Send local graph to rank 0
if(m_local_nid != 0) {
const uint64_t size = graph_str.has_value() ? graph_str->size() : 0;
MPI_Send(&size, 1, MPI_UINT64_T, 0, mpi_support::TAG_PRINT_GRAPH, MPI_COMM_WORLD);
if(size > 0) MPI_Send(graph_str->data(), static_cast<int>(size), MPI_BYTE, 0, mpi_support::TAG_PRINT_GRAPH, MPI_COMM_WORLD);
} else {
std::vector<std::string> graphs;
if(graph_str.has_value()) graphs.push_back(*graph_str);
for(size_t i = 1; i < m_num_nodes; ++i) {
uint64_t size = 0;
MPI_Recv(&size, 1, MPI_UINT64_T, static_cast<int>(i), mpi_support::TAG_PRINT_GRAPH, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
if(size > 0) {
std::string graph;
graph.resize(size);
MPI_Recv(graph.data(), static_cast<int>(size), MPI_BYTE, static_cast<int>(i), mpi_support::TAG_PRINT_GRAPH, MPI_COMM_WORLD,
MPI_STATUS_IGNORE);
graphs.push_back(std::move(graph));
}
}
std::this_thread::sleep_for(std::chrono::milliseconds(500)); // Avoid racing on stdout with other nodes (funneled through mpirun)
CELERITY_TRACE("Command graph:\n\n{}\n", combine_command_graphs(graphs));
}
}
}
// Shutting down the task_manager will cause all buffers captured inside command group functions to unregister.
// Since we check whether the runtime is still active upon unregistering, we have to set this to false first.
m_is_active = false;
m_task_mngr->shutdown();
m_is_shutting_down = false;
maybe_destroy_runtime();
}
void runtime::sync() {
const auto epoch = m_task_mngr->generate_epoch_task(epoch_action::barrier);
m_task_mngr->await_epoch(epoch);
}
task_manager& runtime::get_task_manager() const { return *m_task_mngr; }
buffer_manager& runtime::get_buffer_manager() const { return *m_buffer_mngr; }
reduction_manager& runtime::get_reduction_manager() const { return *m_reduction_mngr; }
host_object_manager& runtime::get_host_object_manager() const { return *m_host_object_mngr; }
void runtime::handle_buffer_registered(buffer_id bid) {
const auto& info = m_buffer_mngr->get_buffer_info(bid);
m_task_mngr->add_buffer(bid, info.dimensions, info.range, info.is_host_initialized);
m_schdlr->notify_buffer_registered(bid, info.dimensions, info.range);
}
void runtime::handle_buffer_unregistered(buffer_id bid) { maybe_destroy_runtime(); }
void runtime::maybe_destroy_runtime() const {
if(m_test_active) return;
if(m_is_active) return;
if(m_is_shutting_down) return;
if(m_buffer_mngr->has_active_buffers()) return;
if(m_host_object_mngr->has_active_objects()) return;
instance.reset();
}
void runtime::test_case_exit() {
assert(m_test_mode && m_test_active);
// We need to delete all tasks manually first, b/c objects that have their lifetime
// extended by tasks (buffers, host objects) will attempt to shut down the runtime.
if(instance != nullptr) { instance->m_task_mngr.reset(); }
instance.reset();
m_test_active = false;
}
} // namespace detail
} // namespace celerity
|
6daaf3e4fc8fcac0e36827cea814f77e91849c0a | cc1b335c0c45c07d50329ebf1fa4fbf45ce6e813 | /magicfilter/src/main/jni/bitmap/JniBitmap.h | 54fff9ce03cf5e393bfa9001e0114842eec31da7 | [
"MIT"
] | permissive | Pluckypan/JNIApp | 5a1f20508b7859114447d3cca3164ffe990ebee1 | 91b0b6641f9df06fe3952e28730524ee0bcd70c1 | refs/heads/master | 2021-04-15T15:38:36.485111 | 2019-05-08T15:04:09 | 2019-05-08T15:04:09 | 126,438,512 | 0 | 0 | MIT | 2019-07-19T08:45:48 | 2018-03-23T05:42:14 | Java | UTF-8 | C++ | false | false | 294 | h | JniBitmap.h | #ifndef _JNIBITMAP_H_
#define _JNIBITMAP_H_
#include <android/bitmap.h>
typedef struct
{
uint8_t alpha, red, green, blue;
} ARGB;
class JniBitmap
{
public:
uint32_t* _storedBitmapPixels;
AndroidBitmapInfo _bitmapInfo;
JniBitmap()
{
_storedBitmapPixels = NULL;
}
};
#endif
|
99dcb9e22cfa8d66ce9af8b1f680df289dcde908 | 41295dbf9a61867d61e219cf0c99c159a942898e | /src_bk/Tracker.cpp | 4cdcc185287ff7e97734b146df98459eddbf07f2 | [] | no_license | eisneim/matchMovingLite | 46e3a5b7cf06fdfa76ee9c92a84ecf98fc75c0f8 | 3100ae3a9d77ba93bf2cb120043d3051e7ab73e9 | refs/heads/master | 2021-01-19T02:34:06.399934 | 2016-08-05T06:08:18 | 2016-08-05T06:08:18 | 63,653,155 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,472 | cpp | Tracker.cpp | #include "Tracker.h"
#include <iostream>
#include <vector>
#include <opencv2/core.hpp>
#include <opencv2/highgui.hpp>
#include <opencv2/imgproc.hpp>
#include <opencv2/features2d.hpp>
#include <opencv2/calib3d.hpp>
#include <math.h> // for sqrt, pow
using namespace std;
using namespace cv;
static const vector<string> DETECTOR_TYPES =
{ "AKAZE", "ORB" };
static const vector<string> MATCHER_TYPES =
{ "BruteForce-Hamming", "BruteForce-Hamming(2)", "BruteForce", "BruteForce-L1", "FlannBased"};
static const double AKAZE_THRESH = 3e-4;
// ransac inlier threshold
static const double RANSAC_THRESH = 2.5f;
// Nearest-neighbour matching ratio
static const double NN_MATCH_RATIO = 0.6f;
// update calc statistics everty 10 frames
static const int STAT_UPDTATE_PERIOD = 10;
static const Scalar MarkerColor(255, 169, 135);
static const Scalar TailColor(0, 255, 0);
Tracker::Tracker(string _detector, string _matcher) :
currentMatchCount(0), currentRatio(0), currentKeypointCount(0)
{
if (_detector == "AKAZE") {
Ptr<AKAZE> akaze = AKAZE::create();
akaze -> setThreshold(AKAZE_THRESH);
detector = akaze;
} else {
cout << "unsopported detector algorithm!" << endl;
throw -1;
}
if (std::find(MATCHER_TYPES.begin(), MATCHER_TYPES.end(), _matcher) != MATCHER_TYPES.end()) {
// matcher = DescriptorMatcher::create(_matcher);
matcher = new BFMatcher(NORM_HAMMING); // ( NORM_HAMMING2, crossCheck)
} else {
string allMachers;
for_each(
MATCHER_TYPES.begin(),
MATCHER_TYPES.end(),
[&](const string& piece){ allMachers += piece + ","; });
cout << "unsopported matcher algorithm! possible matcher:" << allMachers << endl;
throw -1;
}
}
Tracker::~Tracker() {
// cout << "i'm in the destruction" << endl;
}
/**
* process each frame in target video, extract feature, match feature
* @param frame [description]
* @param index [description]
* @return [description]
*/
Mat Tracker::process(Mat frame, int index) {
vector<KeyPoint> points;
Mat descriptors;
// draw matches and stats
Mat distFrame = frame.clone();
detector -> detectAndCompute(frame, noArray(), points, descriptors);
if (index == 0) {
prevKeypoints = points;
prevFrame = frame;
prevDescriptors = descriptors.clone();
// this might be unnecessary
vector<KeyPoint> emptyVect;
allGoodKeypoints.push_back(emptyVect);
return frame;
}
vector< vector<DMatch> > matches;
vector<KeyPoint> matched1, matched2;
vector<Point2f> matchedPoint1, matchedPoint2;
// DescriptorMatcher::knnMatch(queryDescriptors, trainDescriptors, distMatches, K)
// K: Count of best matches found per each query descriptor or less if a query descriptor has less than k possible matches in total.
matcher -> knnMatch(prevDescriptors, descriptors, matches, 2);
// get matched keypoints in both frame
for (unsigned ii = 0; ii < matches.size(); ii++) {
if (matches[ii][0].distance < NN_MATCH_RATIO * matches[ii][1].distance) {
KeyPoint pt1 = prevKeypoints[ matches[ii][0].queryIdx ];
KeyPoint pt2 = points[ matches[ii][0].trainIdx ];
matched1.push_back(pt1);
matched2.push_back(pt2);
matchedPoint1.push_back(pt1.pt);
matchedPoint2.push_back(pt2.pt);
//-- draw out a marker for matched point
drawMarker(distFrame, pt2.pt, MarkerColor, MARKER_TILTED_CROSS, 10, 1);
drawTail(distFrame, pt1, pt2);
}
}
// get the fundamental matrix and then we can get R and T matrix
Mat foundamentalMtx = findFundamentalMat(matchedPoint1, matchedPoint2, CV_FM_RANSAC, 3, 0.99);
// the camera matrix
// fx 0 cx
// 0 fy cy
// 0 0 1
Mat K = (Mat_<double>(3,3) << 50, 0, 500, 0,50,500, 0,0,1);
Mat essentialMtx = K.t() * foundamentalMtx * K; //according to HZ (9.12)
allGoodKeypoints.push_back(matched2);
// some stats;
stringstream strPoints, strMatches, strRatio;
strPoints << "Points: " << currentKeypointCount;
strMatches << "Matches: " << currentMatchCount;
strRatio << "Ratio: " << currentRatio;
bool shouldUpdateStat = (index % STAT_UPDTATE_PERIOD == 0);
if (shouldUpdateStat) {
cout << "fundemental matrix:" << foundamentalMtx << endl;
cout << "essentialMtx :" << essentialMtx << endl;
currentKeypointCount = points.size();
currentMatchCount = (int)matched1.size();
currentRatio = currentMatchCount * 1.0 / currentKeypointCount;
cout << strPoints.str() << endl
<< strMatches.str() << endl
<< strRatio.str() << endl
<< "===================" << endl;
}
// putText(dist, text, org, fontFace, scale, color, thickness, lineType, buttomLeftOrigin)
putText(distFrame, strPoints.str(), Point(0, distFrame.rows - 90), FONT_HERSHEY_COMPLEX, 1, Scalar::all(255), 1);
putText(distFrame, strMatches.str(), Point(0, distFrame.rows - 50), FONT_HERSHEY_COMPLEX, 1, Scalar::all(255), 1);
putText(distFrame, strRatio.str(), Point(0, distFrame.rows - 10), FONT_HERSHEY_COMPLEX, 1, Scalar::all(255), 1);
// drawKeypoint(distFrame, matched2);
prevKeypoints = points;
prevFrame = frame;
prevDescriptors = descriptors;
return distFrame;
}
void Tracker::drawKeypoint(Mat frame, vector<KeyPoint> keypoints) {
// drawMarker(img,Point position, color, markerType, size, thickness, lineType)
for(unsigned ii = 0; ii < keypoints.size(); ii++) {
KeyPoint point = keypoints[ii];
Scalar color(0, 255, 0);
drawMarker(frame, point.pt, color, MARKER_TILTED_CROSS, 10, 1);
}
}
void Tracker::drawTail(Mat frame, KeyPoint pt1, KeyPoint pt2) {
Point2f p = pt1.pt,
q(pt2.pt.x, pt2.pt.y);
double angle;
angle = atan2( (double) p.y - q.y, (double) p.x - q.x );
double hypotenuse; hypotenuse = sqrt( pow((p.y - q.y), 2) + pow((p.x - q.x), 2) );
/* Here we lengthen the arrow by a factor of three. */
q.x = (int) (p.x - 3 * hypotenuse * cos(angle));
q.y = (int) (p.y - 3 * hypotenuse * sin(angle));
cv::line(frame, p, q, TailColor, 1, CV_AA, 0 );
}
/**
* this is for plane surface features only, since homography transform is only for plane
* @param queryKeypoints [description]
* @param trainKeypoints [description]
* @param reprojectionThreshold [description]
* @param matches [description]
* @param homography [description]
* @return [description]
*/
bool Tracker::refineMatchesWithHomography(
const vector<KeyPoint>& queryKeypoints,
const vector<KeyPoint>& trainKeypoints,
float reprojectionThreshold,
vector<DMatch>& matches,
Mat& homography
) {
const int minNumberMatchesAllowed = 8;
if (matches.size() < minNumberMatchesAllowed)
return false;
// prepare data for cv::findHomography
vector<Point2f> srcPoints(matches.size());
vector<Point2f> dstPoints(matches.size());
for (size_t ii = 0; ii < matches.size(); ii++) {
srcPoints.push_back(trainKeypoints[ matches[ ii ].trainIdx ].pt);
dstPoints.push_back(queryKeypoints[ matches[ ii ].queryIdx ].pt);
}
// find homography matrix and get inlier matrix
vector<unsigned char> inliersMask(srcPoints.size());
homography = findHomography(srcPoints, dstPoints, CV_FM_RANSAC, reprojectionThreshold, inliersMask);
vector<DMatch> inliers;
for (size_t ii = 0; ii < inliersMask.size(); ii++) {
if (inliersMask[ii]) {
inliers.push_back(matches[ii]);
}
}
matches.swap(inliers);
return matches.size() > minNumberMatchesAllowed;
}
|
714a8e5eab725371d7e2382f9242f2d9b358fe5f | b9352d382c5d0e2772f0a6cfb9802495cd893c10 | /src/AefLib/Linux/aefTcpServer.cpp | e90e01960651276fae569504269e69c83118f070 | [] | no_license | yackey/AEF-CI | 2b4cedc38cfe966b2993639aa5034ba2ad95e9fc | 9ae6ef30e3a0406394f13a1f7de268c8e5357786 | refs/heads/master | 2021-01-25T14:56:02.958430 | 2018-04-23T19:09:08 | 2018-04-23T19:09:08 | 123,736,556 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,686 | cpp | aefTcpServer.cpp | /****************************************************************************/
/*!
** \file aefLinuxTcpServer.cpp
** \brief VxWorks TCP Server class
**
** The routines in this file implement TCP server class/task to handle
** multiple client connections. A task will be created to listen for
** inbound connection attempts and receive data from connected clients. A
** message may be sent to all connected clients by using the Send function.
**
** Avtec, Inc.
** 100 Innovation Place
** Lexington, SC 29072 USA
** (803) 358-3600
**
** Copyright (C) Avtec, Inc., 1990-present.
** All rights reserved. Copying, compilation, modification, distribution
** or any other use whatsoever of this material is strictly prohibited
** without the written consent of Avtec, Inc.
*****************************************************************************/
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <strings.h>
#include <sys/types.h>
#include <sys/time.h>
#include <unistd.h>
#include <map>
#include "aefTypes.h"
#include "aefMutex.h"
#include "aefTimer.h"
#include "aefTaskMessage.h"
#include "aefTask.h"
#include "aefTcpServer.h"
#include "aefPktInterface.h"
//#include "aefTcpServerBase.h"
/**************************************************************************/
/*!
* \brief Default Constructor for CAefTcpServer class.
*
* Default constructor.
*
***************************************************************************/
CAefTcpServer::CAefTcpServer() : CAefTask("tTcpSrvr", 100, 0, 5000)
{
Construct();
}
/**************************************************************************/
/*!
* \brief Constructor for CAefTcpServer class specifying task-related parameters.
*
* \param name Name of task.
* \param priority Priority of task.
* \param options Task intiailzation options
* \param stack Task stack size
***************************************************************************/
CAefTcpServer::CAefTcpServer(char *name, int priority, int options, int stack)
: CAefTask(name, priority, options, stack)
{
Construct();
}
/**************************************************************************/
/*!
* \brief Method called by all constructors to initalized member variables, etc.
*
***************************************************************************/
void CAefTcpServer::Construct()
{
// we want a mutual-exclusion semaphore, i.e., recursive
// Initialize semaphore for the valid socket map
pthread_mutexattr_t mtAttr;
pthread_mutexattr_init(&mtAttr);
pthread_mutexattr_settype(&mtAttr, PTHREAD_MUTEX_RECURSIVE);
pthread_mutex_init(&m_semClientMap, &mtAttr);
m_pParentTask = NULL; // no boss yet
m_pBuf = NULL;
m_bConfigured = false;
m_ClientTimeout = 0;
m_QosValue = 0;
m_LastSend = TicksFromTOD();
m_sockListen = AEF_ERROR;
m_ClientMap.clear();
m_ntickspersec = sysconf(_SC_CLK_TCK);
}
/**************************************************************************/
/*!
* \brief Destructor for CAefTcpServer class.
*
* Makes sure that the task associated with this CVxSerial instance is
* stopped, then frees any resources allocated by the class.
*
***************************************************************************/
CAefTcpServer::~CAefTcpServer()
{
// Clean up the task
Stop();
// delete the semaphores
// TODO: make this conditional on actually creating it
pthread_mutex_destroy(&m_semClientMap); // Delete the socket map semaphore
}
/**************************************************************************/
/*!
* \brief Class Configuration
*
* Configures the TCP Server class parameters
*
* \param port Port to listen for inbound connection requests
* \param maxConnections Maximum number of supported clients
* \param pTask Task that should be notified of any events
* \param dataRcvdId Message ID used when a valid message is received
* \param connectId Message ID used when a client successfully connects to the server
* \param disconnectId Message ID used when a client disconnects or the connection times out
* \param shutdownId Message ID used when the server unexpectedly shuts down
* \param pPktObj pointer to the CPacket-derived class that parses and builds the message protocol
* \param bufSize Maximum number of bytes that can be sent to pClientObj at once
* \param timeout If non-zero, indicates time (in ms) to disconnect a client if no valid packet is received
* \param keepalive Time (in ms) to make sure that a message has been sent to all clients
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::Configure(uint16_t port, uint16_t maxConnections, // port Init
CAefQueueTask* pTask, uint32_t dataRcvdId, // msg Init
uint32_t connectId, uint32_t disconnectId,
uint32_t shutdownId, aefPacketInterface* pPktObj,
uint32_t bufSize, int timeout, int keepalive)
{
AEF_STATUS result = AEF_ERROR;
// Check if we are already initialized
if (m_bConfigured == false)
{
m_pParentTask = pTask;
m_DataRcvdId = dataRcvdId;
m_ConnectId = connectId;
m_DisconnectId = disconnectId;
m_ShutdownId = shutdownId;
m_pPktObj = pPktObj;
m_BufSize = bufSize;
m_Port = port;
m_MaxConnections = maxConnections;
SetKeepalive(timeout, keepalive);
m_pBuf = new uint8_t[bufSize];
if (m_pBuf != NULL)
{
result = AEF_SUCCESS;
m_bConfigured = true;
}
}
// Return any errors
return result;
}
/**************************************************************************/
/*!
* \brief Updates keepalive settings
*
* Allows dynamic updates of the keepalive settings for the serial connection
*
* \param timeout If non-zero, indicates time (in ms) after which no communication will result in shutdown
* \param keepalive Time (in ms) to make sure that a message has been sent to the remote side.
*
* \return N/A
*
***************************************************************************/
void CAefTcpServer::SetKeepalive(int timeout, int keepalive)
{
uint32_t newTimeout = MsToTimeTicks(timeout);
uint32_t newKeepalive = MsToTimeTicks(keepalive);
if (m_ClientTimeout != newTimeout)
{
m_ClientTimeout = newTimeout;
}
if (m_KeepAliveTimeout != newKeepalive)
{
m_KeepAliveTimeout = newKeepalive;
}
}
/**************************************************************************/
/*!
* \brief Send a message to all clients or a specific client
*
* \param pData Data buffer to send
* \param dataLen Number of bytes in pData
* \param socket socket to receive data, or ERROR to send data to all clients
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::Send(uint8_t *pData, uint32_t dataLen, AEF_TCP_CONN_ID socket)
{
AEF_STATUS result = AEF_ERROR;
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO *pci;
// Make sure we are initialized
if ((m_bConfigured == true) && (ClientGetCount() > 0))
{
if (socket == AEF_ERROR)
{
pthread_mutex_lock(&m_semClientMap);
result = AEF_SUCCESS;
// Loop through all of the clients
for (it = m_ClientMap.begin(); (it != m_ClientMap.end()) && (result == AEF_SUCCESS);)
{
// Get a pointer to the socket entry
pci = (VX_TCP_CLIENT_INFO *) (*it).second;
result = SendSocket(pci->Socket, pData, dataLen);
// Point to the next entry in the map
it++;
}
pthread_mutex_unlock(&m_semClientMap);
}
else
{
result = SendSocket(socket, pData, dataLen);
}
if (result == AEF_SUCCESS)
{
m_LastSend = TicksFromTOD();
}
}
return result;
}
/**************************************************************************/
/*!
* \brief Send a message to a specific client
*
* \param socket socket of the client to receive data
* \param pData Data buffer to send
* \param dataLen Number of bytes in pData
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::SendSocket(AEF_TCP_CONN_ID socket, uint8_t* pData, uint32_t dataLen)
{
AEF_STATUS result = AEF_ERROR;
uint8_t* pPkt;
uint32_t pktLen;
pPkt = m_pPktObj->Build(pData, dataLen, &pktLen);
if (pPkt != NULL)
{
// Make sure we are initialized
if (m_bConfigured == true)
{
pthread_mutex_lock(&m_semClientMap);
// Check to see if the socket is in the socket map... if it isn't, then we
// need to ignore the message, as the socket is currently closed...
if (IsValidSocket(socket))
{
if (write(socket, (char*) pPkt, pktLen) == (int) pktLen)
{
result = AEF_SUCCESS;
}
}
pthread_mutex_unlock(&m_semClientMap);
}
delete [] pPkt;
}
return result;
}
/**************************************************************************/
/*!
* \brief Initialize the running task, just before entering the main processing loop
*
* \param pTaskData task data passed down to base class
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::Init(void* pTaskData)
{
AEF_STATUS result = AEF_ERROR;
struct sockaddr_in localAdrs;
int sockaddrsize;
if ((CAefTask::Init(pTaskData) == AEF_SUCCESS) && (m_bConfigured == true))
{
sockaddrsize = sizeof (struct sockaddr_in);
bzero((char*) &localAdrs, sockaddrsize);
localAdrs.sin_family = AF_INET;
localAdrs.sin_port = htons(m_Port);
localAdrs.sin_addr.s_addr = htonl(INADDR_ANY);
m_sockListen = socket(AF_INET, SOCK_STREAM, 0);
if (m_sockListen != AEF_ERROR)
{
if ((SetSocketOptions(m_sockListen) != AEF_ERROR) &&
(bind(m_sockListen, (struct sockaddr*) &localAdrs, sockaddrsize) != AEF_ERROR) &&
(listen(m_sockListen, 1) != AEF_ERROR))
{
result = AEF_SUCCESS;
FD_ZERO(&m_setSelect);
FD_SET(m_sockListen, &m_setSelect);
}
else
{
close(m_sockListen);
m_sockListen = AEF_ERROR;
}
}
}
return result;
}
/**************************************************************************/
/*!
* \brief Main processing loop; receives serial data and alerts the client object.
*
* \return Exit code (?)
*
***************************************************************************/
AEF_STATUS CAefTcpServer::Run()
{
struct sockaddr_in addr;
socklen_t addrlen;
int fdNew;
fd_set selSet;
struct timeval selTmout;
int selResult;
int bytesRead;
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO *pci;
int32_t watchdogTime;
int32_t currentTs;
// TODO: I think this is correct
// some are absolute, some ain't
selTmout.tv_sec = 0;
selTmout.tv_usec = 500000;
addrlen = sizeof (addr);
RegisterWatchdogKick();
// TODO: need to see what is expected here
watchdogTime = (int32_t) GetTimestamp();
m_exitReason = 0;
while (m_bTaskRunning == true)
{
selSet = m_setSelect;
selResult = select(FD_SETSIZE, &selSet, NULL, NULL, &selTmout);
if (selResult != AEF_ERROR)
{
// loop through connected sockets, looking for sockets flagged to be closed
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
for (it = m_ClientMap.begin(); it != m_ClientMap.end();)
{
pci = (VX_TCP_CLIENT_INFO *) (*it).second;
it++;
if (pci->bDelete)
{
RemoveClient(pci->Socket);
}
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
// now look for activity on the remaining sockets
if (selResult > 0)
{
// loop through connected sockets
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
for (it = m_ClientMap.begin(); it != m_ClientMap.end();)
{
pci = (VX_TCP_CLIENT_INFO *) (*it).second;
if (FD_ISSET(pci->Socket, &selSet))
{
if ((bytesRead = recv(pci->Socket, (char*) m_pBuf, m_BufSize, 0)) != AEF_ERROR)
{
if (bytesRead > 0)
{
// if client says a complete and valid message has been received
// (i.e., client returns a "1"), update m_LastRcvd
if (m_pPktObj->ParseData(pci->Socket, m_pBuf, bytesRead, m_pParentTask, m_DataRcvdId) == 1)
{
pci->LastRcv = TicksFromTOD();
}
}
it++;
if (bytesRead == 0)
{
RemoveClient(pci->Socket);
}
}
else
{
it++;
RemoveClient(pci->Socket);
}
}
else
{
it++;
}
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
// now check the select socket
if (FD_ISSET(m_sockListen, &selSet))
{
// accept the new guy
fdNew = accept(m_sockListen, (struct sockaddr *) &addr, &addrlen);
if (fdNew != AEF_ERROR)
{
// if we haven't reached our max connections, add him to the list
if (AddClient(fdNew, &addr, addrlen) == AEF_SUCCESS)
{
CAefTaskMessage msg(m_ConnectId);
msg.SetData((unsigned char*) &fdNew, sizeof (fdNew));
m_pParentTask->SendMessage(&msg);
}
else
{
// if we couldn't add it to the list for any reason,
// close the socket
close(fdNew);
}
}
}
}
ReceiveTimeoutCheck();
KeepAliveCheck();
currentTs = (int32_t) GetTimestamp();
if ((currentTs - watchdogTime) >= (int32_t) MsToTimeTicks(1000))
{
WatchdogReport();
watchdogTime = currentTs;
}
}
else
{
// shouldn't receive ERROR here, so bail out?
m_bTaskRunning = false;
m_exitReason = 1;
// send an error back?
}
}
if (m_exitReason == 0)
{
// stop kicking the dog only on a normal shutdown
UnregisterWatchdogKick();
}
close(m_sockListen);
m_sockListen = AEF_ERROR;
FD_ZERO(&m_setSelect);
return AEF_SUCCESS;
}
/**************************************************************************/
/*!
* \brief Perform task cleanup just before task is about to exit
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::Exit(AEF_STATUS exitCode)
{
RemoveAllClients();
// Reset the variables
m_bConfigured = false;
if (m_pBuf != NULL)
{
delete [] m_pBuf;
m_pBuf = NULL;
}
if (m_exitReason != 0)
{
// we had an asynchronous failure, so alert the client
CAefTaskMessage msg(m_ShutdownId);
m_pParentTask->SendMessage(&msg);
}
return CAefTask::Exit(exitCode);
}
/**************************************************************************/
/*!
* \brief Sets standard socket options for client socket descriptors
*
* \param socket socket descriptor to be modified
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::SetSocketOptions(AEF_TCP_CONN_ID socket)
{
AEF_STATUS result;
int sockopt = 1;
if ((setsockopt(socket, IPPROTO_TCP, TCP_NODELAY, (char*) &sockopt, sizeof (int)) == AEF_ERROR) ||
// todo this don't work (setsockopt(socket, SOL_SOCKET, SO_REUSEPORT, (char*) &sockopt, sizeof (int)) == AEF_ERROR) ||
(setsockopt(socket, IPPROTO_IP, IP_TOS, (char*) &m_QosValue, sizeof (int)) == AEF_ERROR))
{
result = AEF_ERROR;
}
else
{
result = AEF_SUCCESS;
}
return result;
}
/**************************************************************************/
/*!
* \brief Check all connected clients to verify they are still sending valid packets.
*
***************************************************************************/
void CAefTcpServer::ReceiveTimeoutCheck(void)
{
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO *pci;
if ((m_bConfigured == true) && m_ClientTimeout)
{
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
for (it = m_ClientMap.begin(); it != m_ClientMap.end();)
{
pci = (VX_TCP_CLIENT_INFO *) (*it).second;
if (TicksFromTOD() - pci->LastRcv > m_ClientTimeout)
{
it++;
RemoveClient(pci->Socket);
}
else
{
it++;
}
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
}
}
/**************************************************************************/
/*!
* \brief Determine if a keepalive message should be sent to the clients
*
***************************************************************************/
void CAefTcpServer::KeepAliveCheck(void)
{
uint8_t *pData;
uint32_t dataLen;
if (m_KeepAliveTimeout)
{
if (((TicksFromTOD() - m_LastSend) > m_KeepAliveTimeout) &&
(m_pPktObj->GetKeepaliveMessage(&pData, &dataLen) == true))
{
Send(pData, dataLen);
}
}
}
/**************************************************************************/
/*!
* \brief Add a client to the client map
*
* \param socket socket descriptor to be added
*
* \return AEF_SUCCESS or AEF_ERROR
*
***************************************************************************/
AEF_STATUS CAefTcpServer::AddClient(AEF_TCP_CONN_ID socket, struct sockaddr_in* pAddr, int addrLen)
{
VX_TCP_CLIENT_INFO *pClientInfo;
AEF_STATUS result = AEF_ERROR;
pthread_mutex_lock(&m_semClientMap);
if (ClientGetCount() < m_MaxConnections)
{
if (SetSocketOptions(socket) == AEF_SUCCESS)
{
pClientInfo = new VX_TCP_CLIENT_INFO;
if (pClientInfo != NULL)
{
if (addrLen != 0)
{
pClientInfo->IPAddress = pAddr->sin_addr.s_addr;
pClientInfo->Port = pAddr->sin_port;
}
else
{
pClientInfo->IPAddress = 0;
pClientInfo->Port = 0;
}
pClientInfo->Socket = socket;
pClientInfo->LastRcv = TicksFromTOD();
pClientInfo->bDelete = 0;
m_ClientMap.insert(CLIENTMAP::value_type(socket, pClientInfo));
FD_SET(socket, &m_setSelect);
// Tell the packet parser about the new client...
m_pPktObj->AddClient(socket);
result = AEF_SUCCESS;
}
}
}
pthread_mutex_unlock(&m_semClientMap);
return (result);
}
/**************************************************************************/
/*!
* \brief Remove a client from the client map and disconnect the client
*
* \param socket socket descriptor to be removeed
*
***************************************************************************/
void CAefTcpServer::RemoveClient(AEF_TCP_CONN_ID socket)
{
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO *pci;
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
if ((it = m_ClientMap.find(socket)) != m_ClientMap.end())
{
close(socket); // Close the physical socket
pci = (VX_TCP_CLIENT_INFO *) (*it).second; // Get a pointer to the object
delete pci; // Delete the SOCKET_INFO object
m_ClientMap.erase(socket); // Delete the from the client map
FD_CLR(socket, &m_setSelect);
// Tell the packet parser about a client has been removed...
m_pPktObj->RemoveClient(socket);
CAefTaskMessage msg(m_DisconnectId);
msg.SetData((unsigned char*) &socket, sizeof (socket));
m_pParentTask->SendMessage(&msg);
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
}
/**************************************************************************/
/*!
* \brief Remove all clients from the client map and disconnect them
*
***************************************************************************/
void CAefTcpServer::RemoveAllClients()
{
CLIENTMAP::iterator it;
// Close all of the remaining client sockets
pthread_mutex_lock(&m_semClientMap);
// Loop through all of the clients
for (it = m_ClientMap.begin(); it != m_ClientMap.end(); it++)
{
// Close the socket
close((*it).first);
FD_CLR((*it).first, &m_setSelect);
delete (*it).second;
// Tell the packet parser about a client has been removed...
m_pPktObj->RemoveClient((*it).first);
}
// Clear the map
m_ClientMap.clear();
pthread_mutex_unlock(&m_semClientMap);
}
/**************************************************************************/
/*!
* \brief Determine the current number of connected clients
*
* \return the number of connected clients
*
***************************************************************************/
uint32_t CAefTcpServer::ClientGetCount()
{
uint32_t count;
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
count = (uint32_t) m_ClientMap.size();
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
return count;
}
/**************************************************************************/
/*!
* \brief Attempt to determine the validity of the socket
*
* \param socket socket descriptor in question
*
* \return true or false
*
***************************************************************************/
bool CAefTcpServer::IsValidSocket(AEF_TCP_CONN_ID socket)
{
bool valid;
CLIENTMAP::iterator it;
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
it = m_ClientMap.find(socket); // Attempt to find in the map
if (it != m_ClientMap.end())
{
valid = true;
}
else
{
valid = false;
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
return valid;
}
/**************************************************************************/
/*!
* \brief Set the Term-Of-Service bits in the IP header
*
* \param value bit pattern for the TOS bits
*
* \return true (success) or false (failure)
*
***************************************************************************/
bool CAefTcpServer::SetQos(uint8_t value)
{
bool success = true;
if (value != m_QosValue)
{
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO *pci;
m_QosValue = value;
if (m_sockListen != AEF_ERROR)
{
setsockopt(m_sockListen, IPPROTO_IP, IP_TOS, (char*) &m_QosValue, sizeof (m_QosValue));
}
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
// Loop through all of the clients
for (it = m_ClientMap.begin(); it != m_ClientMap.end(); it++)
{
// Get a pointer to the overlapped object
pci = (*it).second;
setsockopt(pci->Socket, IPPROTO_IP, IP_TOS, (char*) &m_QosValue, sizeof (m_QosValue));
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
}
return success;
}
/**************************************************************************/
/*!
* \brief Obtain the IP Address and port of the remote client associated with the given connection identifier.
*
* \param connectionID numeric identifier for a specific client connection
* \param ipAdrs recevies the IP Address of the client upon a successful return
* \param port receives the remote port of the client upon a successful return
*
* \return AEF_SUCCESS if connection is found and address is known, AEF_ERROR otherwise.
*
***************************************************************************/
AEF_STATUS CAefTcpServer::GetClientInfo(AEF_TCP_CONN_ID connectionID, uint32_t& ipAdrs, uint16_t& port)
{
AEF_STATUS result = AEF_ERROR;
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO* pCInfo;
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
if ((it = m_ClientMap.find(connectionID)) != m_ClientMap.end())
{
pCInfo = (*it).second;
if (pCInfo->IPAddress != 0)
{
ipAdrs = pCInfo->IPAddress;
port = pCInfo->Port;
result = AEF_SUCCESS;
}
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
return result;
}
/**************************************************************************/
/*!
* \brief Allow caller from a different thread to close a connection.
*
* Note that the connection is not destroyed immediately. Caller will
* receive the disconnect message "event" when the connection is actually
* closed.
*
* \param connectionID identifier for the connection to be removeed
*
* \return AEF_SUCCESS is connection is sucessfully flagged for closing,
* AEF_ERROR if connection couldn't be found.
***************************************************************************/
AEF_STATUS CAefTcpServer::CloseConnection(AEF_TCP_CONN_ID connectionID)
{
AEF_STATUS result = AEF_ERROR;
CLIENTMAP::iterator it;
VX_TCP_CLIENT_INFO *pci;
pthread_mutex_lock(&m_semClientMap); // Lock the socket map
if ((it = m_ClientMap.find(connectionID)) != m_ClientMap.end())
{
pci = (VX_TCP_CLIENT_INFO *) (*it).second; // Get a pointer to the object
// simply flag the client connection to be deleted at the next
// opportunity
pci->bDelete = 1;
result = AEF_SUCCESS;
}
pthread_mutex_unlock(&m_semClientMap); // Unlock the socket map
return result;
}
/**************************************************************************/
/*!
* \brief Convert a millisecond value into a tick count
*
* \return The number "ticks" equal to the number of milliseconds passed in
*
***************************************************************************/
uint32_t CAefTcpServer::TicksFromMs(uint32_t ms)
{
uint32_t nTps = (ms/1000) * m_ntickspersec;
return nTps;
}
/**************************************************************************/
/*!
* \brief Convert a millisecond value into a tick count
*
* \return The number "ticks" equal to the number of milliseconds passed in
*
***************************************************************************/
uint32_t CAefTcpServer::TicksFromTOD()
{
struct timeval tv;
gettimeofday(&tv, 0);
uint32_t ms = (tv.tv_usec/1000);
ms += (tv.tv_sec * 1000);
return TicksFromMs(ms);
}
|
e056a8b445ef3eacab3eee294aa9b639a2c28751 | fb0f9abad373cd635c2635bbdf491ea0f32da5ff | /src/coreclr/vm/classcompat.h | 2320318c954fbc5a1123f7be2ea75128844703d6 | [
"MIT"
] | permissive | dotnet/runtime | f6fd23936752e202f8e4d6d94f3a4f3b0e77f58f | 47bb554d298e1e34c4e3895d7731e18ad1c47d02 | refs/heads/main | 2023-09-03T15:35:46.493337 | 2023-09-03T08:13:23 | 2023-09-03T08:13:23 | 210,716,005 | 13,765 | 5,179 | MIT | 2023-09-14T21:58:52 | 2019-09-24T23:36:39 | C# | UTF-8 | C++ | false | false | 30,041 | h | classcompat.h | // Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// ===========================================================================
// File: CLASS.H
#ifndef CLASSCOMPAT_H
#define CLASSCOMPAT_H
#ifdef FEATURE_COMINTEROP
/*
* Include Files
*/
#include "eecontract.h"
#include "argslot.h"
#include "vars.hpp"
#include "cor.h"
#include "clrex.h"
#include "hash.h"
#include "crst.h"
#include "cgensys.h"
#include "stdinterfaces.h"
#include "slist.h"
#include "spinlock.h"
#include "typehandle.h"
#include "methodtable.h"
#include "eeconfig.h"
#include "typectxt.h"
#include "stackingallocator.h"
#include "class.h"
/*
* Forward declarations
*/
class AppDomain;
class ArrayClass;
class ArrayMethodDesc;
class Assembly;
class ClassLoader;
class FCallMethodDesc;
class EEClass;
class LayoutEEClass;
class EnCFieldDesc;
class FieldDesc;
struct LayoutRawFieldInfo;
class MetaSig;
class MethodDesc;
class MethodDescChunk;
class MethodNameHash;
class MethodTable;
class Module;
class Object;
class Stub;
class Substitution;
class SystemDomain;
class TypeHandle;
class AllocMemTracker;
class ZapCodeMap;
class InteropMethodTableSlotDataMap;
class LoadingEntry_LockHolder;
class DispatchMapBuilder;
namespace ClassCompat
{
//*******************************************************************************
// workaround: These classification bits need cleanup bad: for now, this gets around
// IJW setting both mdUnmanagedExport & mdPinvokeImpl on expored methods.
#define IsReallyMdPinvokeImpl(x) ( ((x) & mdPinvokeImpl) && !((x) & mdUnmanagedExport) )
//*******************************************************************************
//
// The MethodNameHash is a temporary loader structure which may be allocated if there are a large number of
// methods in a class, to quickly get from a method name to a MethodDesc (potentially a chain of MethodDescs).
//
//*******************************************************************************
// Entry in the method hash table
class MethodHashEntry
{
public:
MethodHashEntry * m_pNext; // Next item with same hash value
DWORD m_dwHashValue; // Hash value
MethodDesc * m_pDesc;
LPCUTF8 m_pKey; // Method name
};
//*******************************************************************************
class MethodNameHash
{
public:
MethodHashEntry **m_pBuckets; // Pointer to first entry for each bucket
DWORD m_dwNumBuckets;
BYTE * m_pMemory; // Current pointer into preallocated memory for entries
BYTE * m_pMemoryStart; // Start pointer of pre-allocated memory fo entries
MethodNameHash *m_pNext; // Chain them for stub dispatch lookup
INDEBUG( BYTE * m_pDebugEndMemory; )
MethodNameHash()
{
LIMITED_METHOD_CONTRACT;
m_pMemoryStart = NULL;
m_pNext = NULL;
}
~MethodNameHash()
{
LIMITED_METHOD_CONTRACT;
if (m_pMemoryStart != NULL)
delete(m_pMemoryStart);
}
// Throws on error
void Init(DWORD dwMaxEntries, StackingAllocator *pAllocator = NULL);
// Insert new entry at head of list
void Insert(
LPCUTF8 pszName,
MethodDesc *pDesc);
// Return the first MethodHashEntry with this name, or NULL if there is no such entry
MethodHashEntry *Lookup(
LPCUTF8 pszName,
DWORD dwHash);
void SetNext(MethodNameHash *pNext) { m_pNext = pNext; }
MethodNameHash *GetNext() { return m_pNext; }
};
//*******************************************************************************
//
// This structure is used only when the classloader is building the interface map. Before the class
// is resolved, the EEClass contains an array of these, which are all interfaces *directly* declared
// for this class/interface by the metadata - inherited interfaces will not be present if they are
// not specifically declared.
//
// This structure is destroyed after resolving has completed.
//
typedef struct
{
// The interface method table; for instantiated interfaces, this is the generic interface
MethodTable *m_pMethodTable;
} BuildingInterfaceInfo_t;
//*******************************************************************************
struct InterfaceInfo_t
{
enum {
interface_declared_on_class = 0x1,
interface_implemented_on_parent = 0x2,
};
MethodTable* m_pMethodTable; // Method table of the interface
WORD m_wFlags;
private:
WORD m_wStartSlot; // starting slot of interface in vtable
public:
WORD GetInteropStartSlot()
{
return m_wStartSlot;
}
void SetInteropStartSlot(WORD wStartSlot)
{
m_wStartSlot = wStartSlot;
}
BOOL IsDeclaredOnClass()
{
LIMITED_METHOD_CONTRACT;
return (m_wFlags & interface_declared_on_class);
}
BOOL IsImplementedByParent()
{
LIMITED_METHOD_CONTRACT;
return (m_wFlags & interface_implemented_on_parent);
}
};
//*******************************************************************************
// MethodTableBuilder simply acts as a holder for the
// large algorithm that "compiles" a type into
// a MethodTable/EEClass/DispatchMap/VTable etc. etc.
//
// The user of this class (the ClassLoader) currently builds the EEClass
// first, and does a couple of other things too, though all
// that work should probably be folded into BuildMethodTableThrowing.
//
class MethodTableBuilder
{
public:
MethodTableBuilder(MethodTable * pMT, StackingAllocator *pStackingAllocator)
{
LIMITED_METHOD_CONTRACT;
m_pHalfBakedMT = pMT;
m_pHalfBakedClass = pMT->GetClass();
m_pStackingAllocator = pStackingAllocator;
NullBMTData();
}
public:
// This method is purely for backward compatibility of COM Interop, and its
// implementation can be found in ClassCompat.cpp
InteropMethodTableData *BuildInteropVTable(AllocMemTracker *pamTracker);
InteropMethodTableData *BuildInteropVTableForArray(AllocMemTracker *pamTracker);
LPCWSTR GetPathForErrorMessages();
private:
enum e_METHOD_IMPL
{
METHOD_IMPL_NOT,
#ifndef STUB_DISPATCH_ALL
METHOD_IMPL,
#endif
METHOD_IMPL_COUNT
};
enum e_METHOD_TYPE
{
METHOD_TYPE_NORMAL,
METHOD_TYPE_FCALL,
METHOD_TYPE_EEIMPL,
METHOD_TYPE_NDIRECT,
METHOD_TYPE_INTEROP,
METHOD_TYPE_INSTANTIATED,
METHOD_TYPE_COUNT
};
private:
// <NICE> Get rid of this.</NICE>
EEClass *m_pHalfBakedClass;
MethodTable * m_pHalfBakedMT;
StackingAllocator *m_pStackingAllocator;
StackingAllocator* GetStackingAllocator() { return m_pStackingAllocator; }
// GetHalfBakedClass: The EEClass you get back from this function may not have all its fields filled in yet.
// Thus you have to make sure that the relevant item which you are accessing has
// been correctly initialized in the EEClass/MethodTable construction sequence
// at the point at which you access it.
//
// Gradually we will move the code to a model where the process of constructing an EEClass/MethodTable
// is more obviously correct, e.g. by relying much less on reading information using GetHalfBakedClass
// and GetHalfBakedMethodTable.
//
// <NICE> Get rid of this.</NICE>
EEClass *GetHalfBakedClass() { LIMITED_METHOD_CONTRACT; return m_pHalfBakedClass; }
MethodTable *GetHalfBakedMethodTable() { WRAPPER_NO_CONTRACT; return m_pHalfBakedMT; }
mdTypeDef GetCl() { LIMITED_METHOD_CONTRACT; return bmtType->cl; }
BOOL IsGlobalClass() { WRAPPER_NO_CONTRACT; return GetCl() == COR_GLOBAL_PARENT_TOKEN; }
BOOL IsEnum() { LIMITED_METHOD_CONTRACT; return bmtProp->fIsEnum; }
DWORD GetAttrClass() { LIMITED_METHOD_CONTRACT; return bmtType->dwAttr; }
BOOL IsInterface() { WRAPPER_NO_CONTRACT; return IsTdInterface(GetAttrClass()); }
BOOL IsValueClass() { LIMITED_METHOD_CONTRACT; return bmtProp->fIsValueClass; }
BOOL IsAbstract() { LIMITED_METHOD_CONTRACT; return IsTdAbstract(bmtType->dwAttr); }
BOOL HasLayout() { LIMITED_METHOD_CONTRACT; return bmtProp->fHasLayout; }
BOOL IsDelegate() { LIMITED_METHOD_CONTRACT; return bmtProp->fIsDelegate; }
Module *GetModule() { LIMITED_METHOD_CONTRACT; return bmtType->pModule; }
Assembly *GetAssembly() { WRAPPER_NO_CONTRACT; return GetModule()->GetAssembly(); }
ClassLoader *GetClassLoader() { WRAPPER_NO_CONTRACT; return GetModule()->GetClassLoader(); }
IMDInternalImport* GetMDImport() { WRAPPER_NO_CONTRACT; return GetModule()->GetMDImport(); }
#ifdef _DEBUG
LPCUTF8 GetDebugClassName() { LIMITED_METHOD_CONTRACT; return bmtProp->szDebugClassName; }
#endif // _DEBUG
BOOL IsComImport() { WRAPPER_NO_CONTRACT; return IsTdImport(GetAttrClass()); }
BOOL IsComClassInterface() { LIMITED_METHOD_CONTRACT; return bmtProp->fIsComClassInterface; }
// <NOTE> The following functions are used during MethodTable construction to setup information
// about the type being constructedm in particular information stored in the EEClass.
// USE WITH CAUTION!! TRY NOT TO ADD MORE OF THESE!! </NOTE>
//
// <NICE> Get rid of all of these - we should be able to evaluate these conditions BEFORE
// we create the EEClass object, and thus set the flags immediately at the point
// we create that object.</NICE>
void SetIsValueClass() { LIMITED_METHOD_CONTRACT; bmtProp->fIsValueClass = TRUE; }
void SetEnum() { LIMITED_METHOD_CONTRACT; bmtProp->fIsEnum = TRUE; }
void SetHasLayout() { LIMITED_METHOD_CONTRACT; bmtProp->fHasLayout = TRUE; }
void SetIsDelegate() { LIMITED_METHOD_CONTRACT; bmtProp->fIsDelegate = TRUE; }
#ifdef _DEBUG
void SetDebugClassName(LPUTF8 x) { LIMITED_METHOD_CONTRACT; bmtProp->szDebugClassName = x; }
#endif
void SetIsComClassInterface() { LIMITED_METHOD_CONTRACT; bmtProp->fIsComClassInterface = TRUE; }
/************************************
* PRIVATE INTERNAL STRUCTS
************************************/
private:
struct bmtErrorInfo
{
UINT resIDWhy;
LPCUTF8 szMethodNameForError;
mdToken dMethodDefInError;
Module* pModule;
mdTypeDef cl;
OBJECTREF *pThrowable;
// Set the reason and the offending method def. If the method information
// is not from this class set the method name and it will override the method def.
inline bmtErrorInfo() : resIDWhy(0), szMethodNameForError(NULL), dMethodDefInError(mdMethodDefNil), pThrowable(NULL) {LIMITED_METHOD_CONTRACT; }
};
struct bmtProperties
{
BOOL fSparse; // Set to true if a sparse interface is being used.
// Com Interop, ComWrapper classes extend from ComObject
BOOL fIsComObjectType; // whether this class is an instance of ComObject class
BOOL fIsMngStandardItf; // Set to true if the interface is a manages standard interface.
BOOL fComEventItfType; // Set to true if the class is a special COM event interface.
BOOL fIsValueClass;
BOOL fIsEnum;
BOOL fIsComClassInterface;
BOOL fHasLayout;
BOOL fIsDelegate;
LPUTF8 szDebugClassName;
inline bmtProperties()
{
LIMITED_METHOD_CONTRACT;
memset((void *)this, NULL, sizeof(*this));
}
};
struct bmtVtable
{
WORD wCurrentVtableSlot;
WORD wCurrentNonVtableSlot;
// Temporary vtable - use GetMethodDescForSlot/SetMethodDescForSlot for access.
// pVtableMD is initialized lazily from pVtable
// pVtable is invalidated if the slot is overwritten.
PCODE* pVtable;
MethodDesc** pVtableMD;
MethodTable *pParentMethodTable;
MethodDesc** pNonVtableMD;
InteropMethodTableSlotData **ppSDVtable;
InteropMethodTableSlotData **ppSDNonVtable;
DWORD dwMaxVtableSize; // Upper bound on size of vtable
InteropMethodTableSlotDataMap *pInteropData;
DispatchMapBuilder *pDispatchMapBuilder;
MethodDesc* GetMethodDescForSlot(WORD slot)
{
CONTRACTL
{
NOTHROW;
GC_NOTRIGGER;
MODE_ANY;
}
CONTRACTL_END;
if (pVtable[slot] != NULL && pVtableMD[slot] == NULL)
pVtableMD[slot] = pParentMethodTable->GetMethodDescForSlot(slot);
_ASSERTE((pVtable[slot] == NULL) ||
(MethodTable::GetMethodDescForSlotAddress(pVtable[slot]) == pVtableMD[slot]));
return pVtableMD[slot];
}
void SetMethodDescForSlot(WORD slot, MethodDesc* pMD)
{
WRAPPER_NO_CONTRACT;
pVtable[slot] = NULL;
pVtableMD[slot] = pMD;
}
inline bmtVtable() { LIMITED_METHOD_CONTRACT; memset((void *)this, NULL, sizeof(*this)); }
};
struct bmtParentInfo
{
WORD wNumParentInterfaces;
MethodDesc **ppParentMethodDescBuf; // Cache for declared methods
MethodDesc **ppParentMethodDescBufPtr; // Pointer for iterating over the cache
MethodNameHash *pParentMethodHash;
Substitution parentSubst;
MethodTable *pParentMethodTable;
mdToken token;
inline bmtParentInfo() { LIMITED_METHOD_CONTRACT; memset((void *)this, NULL, sizeof(*this)); }
};
struct bmtInterfaceInfo
{
DWORD dwTotalNewInterfaceMethods;
InterfaceInfo_t *pInterfaceMap; // Temporary interface map
// ppInterfaceSubstitutionChains[i][0] holds the primary substitution for each interface
// ppInterfaceSubstitutionChains[i][0..depth[i] ] is the chain of substitutions for each interface
Substitution **ppInterfaceSubstitutionChains;
DWORD *pdwOriginalStart; // If an interface is moved this is the original starting location.
WORD wInterfaceMapSize; // # members in interface map
DWORD dwLargestInterfaceSize; // # members in largest interface we implement
DWORD dwMaxExpandedInterfaces; // Upper bound on size of interface map
MethodDesc **ppInterfaceMethodDescList; // List of MethodDescs for current interface
MethodDesc **ppInterfaceDeclMethodDescList; // List of MethodDescs for the interface itself
MethodDesc ***pppInterfaceImplementingMD; // List of MethodDescs that implement interface methods
MethodDesc ***pppInterfaceDeclaringMD; // List of MethodDescs from the interface itself
inline bmtInterfaceInfo() { LIMITED_METHOD_CONTRACT; memset((void *)this, NULL, sizeof(*this)); }
};
struct bmtMethodInfo
{
DWORD cMethAndGaps; // # meta-data methods of this class ( including the gaps )
WORD cMethods; // # meta-data methods of this class
mdToken * rgMethodTokens; // Enumeration of metadata methods
DWORD * rgMethodAttrs; // Enumeration of the attributes of the methods
DWORD * rgMethodImplFlags; // Enumeration of the method implementation flags
ULONG * rgMethodRVA; // Enumeration of the method RVA's
DWORD * rgMethodClassifications; // Enumeration of the method classifications
LPCSTR * rgszMethodName; // Enumeration of the method names
BYTE * rgMethodImpl; // Enumeration of impl value
BYTE * rgMethodType; // Enumeration of type value
HENUMInternalHolder hEnumMethod;
MethodDesc ** ppUnboxMethodDescList; // Keep track unboxed entry points (for value classes)
MethodDesc ** ppMethodDescList; // MethodDesc pointer for each member
inline bmtMethodInfo(IMDInternalImport *pMDImport)
: cMethAndGaps(0),
cMethods(0),
rgMethodTokens(NULL),
rgMethodAttrs(NULL),
rgMethodImplFlags(NULL),
rgMethodRVA(NULL),
rgMethodClassifications(NULL),
rgszMethodName(NULL),
rgMethodImpl(NULL),
hEnumMethod(pMDImport),
ppUnboxMethodDescList(NULL),
ppMethodDescList(NULL)
{
WRAPPER_NO_CONTRACT;
}
inline void SetMethodData(int idx,
mdToken tok,
DWORD dwAttrs,
DWORD dwRVA,
DWORD dwImplFlags,
DWORD classification,
LPCSTR szMethodName,
BYTE impl,
BYTE type)
{
LIMITED_METHOD_CONTRACT;
rgMethodTokens[idx] = tok;
rgMethodAttrs[idx] = dwAttrs;
rgMethodRVA[idx] = dwRVA;
rgMethodImplFlags[idx] = dwImplFlags;
rgMethodClassifications[idx] = classification;
rgszMethodName[idx] = szMethodName;
rgMethodImpl[idx] = impl;
rgMethodType[idx] = type;
}
};
struct bmtTypeInfo
{
IMDInternalImport * pMDImport;
Module * pModule;
mdToken cl;
DWORD dwAttr;
inline bmtTypeInfo() { LIMITED_METHOD_CONTRACT; memset((void *)this, NULL, sizeof(*this)); }
};
struct bmtMethodImplInfo
{
DWORD dwNumberMethodImpls; // Number of method impls defined for this type
HENUMInternalMethodImplHolder hEnumMethodImpl;
struct MethodImplTokenPair
{
mdToken methodBody; // MethodDef's for the bodies of MethodImpls. Must be defined in this type.
mdToken methodDecl; // Method token that body implements. Is a MethodDef or MemberRef
static int __cdecl Compare(const void *elem1, const void *elem2);
static BOOL Equal(const MethodImplTokenPair *elem1, const MethodImplTokenPair *elem2);
};
MethodImplTokenPair * rgMethodImplTokens;
Substitution * pMethodDeclSubsts; // Used to interpret generic variables in the interface of the declaring type
DWORD pIndex; // Next open spot in array, we load the BodyDesc's up in order of appearance in the
// type's list of methods (a body can appear more then once in the list of MethodImpls)
struct Entry
{
mdToken declToken; // Either the token or the method desc is set for the declaration
Substitution declSubst; // Signature instantiations of parent types for Declaration (NULL if not instantiated)
MethodDesc* pDeclDesc; // Method descs for Declaration. If null then Declaration is in this type and use the token
MethodDesc* pBodyDesc; // Method descs created for Method impl bodies
DWORD dwFlags;
};
Entry *rgEntries;
void AddMethod(MethodDesc* pImplDesc, MethodDesc* pDeclDesc, mdToken mdDecl, Substitution *pDeclSubst);
MethodDesc* GetDeclarationMethodDesc(DWORD i)
{
LIMITED_METHOD_CONTRACT;
_ASSERTE(i < pIndex);
return rgEntries[i].pDeclDesc;
}
mdToken GetDeclarationToken(DWORD i)
{
LIMITED_METHOD_CONTRACT;
_ASSERTE(i < pIndex);
return rgEntries[i].declToken;
}
const Substitution *GetDeclarationSubst(DWORD i)
{
LIMITED_METHOD_CONTRACT;
_ASSERTE(i < pIndex);
return &rgEntries[i].declSubst;
}
MethodDesc* GetBodyMethodDesc(DWORD i)
{
LIMITED_METHOD_CONTRACT;
_ASSERTE(i < pIndex);
return rgEntries[i].pBodyDesc;
}
// Returns TRUE if tok acts as a body for any methodImpl entry. FALSE, otherwise.
BOOL IsBody(mdToken tok);
inline bmtMethodImplInfo(IMDInternalImport * pMDImport)
: dwNumberMethodImpls(0),
hEnumMethodImpl(pMDImport),
pIndex(0),
rgEntries(NULL)
{
LIMITED_METHOD_CONTRACT;
}
};
// The following structs, defined as private members of MethodTableBuilder, contain the necessary local
// parameters needed for BuildMethodTable
// Look at the struct definitions for a detailed list of all parameters available
// to BuildMethodTable.
bmtErrorInfo *bmtError;
bmtProperties *bmtProp;
bmtVtable *bmtVT;
bmtParentInfo *bmtParent;
bmtInterfaceInfo *bmtInterface;
bmtMethodInfo *bmtMethod;
bmtTypeInfo *bmtType;
bmtMethodImplInfo *bmtMethodImpl;
void SetBMTData(
bmtErrorInfo *bmtError,
bmtProperties *bmtProp,
bmtVtable *bmtVT,
bmtParentInfo *bmtParent,
bmtInterfaceInfo *bmtInterface,
bmtMethodInfo *bmtMethod,
bmtTypeInfo *bmtType,
bmtMethodImplInfo *bmtMethodImpl);
void NullBMTData();
class DeclaredMethodIterator
{
private:
MethodTableBuilder &m_mtb;
int m_idx;
public:
inline DeclaredMethodIterator(MethodTableBuilder &mtb);
inline int CurrentIndex();
inline BOOL Next();
inline mdToken Token();
inline DWORD Attrs();
inline DWORD RVA();
inline DWORD ImplFlags();
inline DWORD Classification();
inline LPCSTR Name();
inline PCCOR_SIGNATURE GetSig(DWORD *pcbSig);
inline BYTE MethodImpl();
inline BOOL IsMethodImpl();
inline BYTE MethodType();
inline MethodDesc *GetMethodDesc();
inline void SetMethodDesc(MethodDesc *pMD);
inline MethodDesc *GetParentMethodDesc();
inline void SetParentMethodDesc(MethodDesc *pMD);
inline MethodDesc *GetUnboxedMethodDesc();
};
friend class DeclaredMethodIterator;
inline WORD NumDeclaredMethods() { LIMITED_METHOD_CONTRACT; return bmtMethod->cMethods; }
inline void IncNumDeclaredMethods() { LIMITED_METHOD_CONTRACT; bmtMethod->cMethods++; }
private:
static VOID DECLSPEC_NORETURN BuildMethodTableThrowException(HRESULT hr,
const bmtErrorInfo & bmtError);
inline VOID DECLSPEC_NORETURN BuildMethodTableThrowException(
HRESULT hr,
UINT idResWhy,
mdMethodDef tokMethodDef)
{
STANDARD_VM_CONTRACT;
bmtError->resIDWhy = idResWhy;
bmtError->dMethodDefInError = tokMethodDef;
bmtError->szMethodNameForError = NULL;
bmtError->cl = GetCl();
BuildMethodTableThrowException(hr, *bmtError);
}
inline VOID DECLSPEC_NORETURN BuildMethodTableThrowException(
HRESULT hr,
UINT idResWhy,
LPCUTF8 szMethodName)
{
STANDARD_VM_CONTRACT;
bmtError->resIDWhy = idResWhy;
bmtError->dMethodDefInError = mdMethodDefNil;
bmtError->szMethodNameForError = szMethodName;
bmtError->cl = GetCl();
BuildMethodTableThrowException(hr, *bmtError);
}
inline VOID DECLSPEC_NORETURN BuildMethodTableThrowException(
UINT idResWhy,
mdMethodDef tokMethodDef = mdMethodDefNil)
{
STANDARD_VM_CONTRACT;
BuildMethodTableThrowException(COR_E_TYPELOAD, idResWhy, tokMethodDef);
}
inline VOID DECLSPEC_NORETURN BuildMethodTableThrowException(
UINT idResWhy,
LPCUTF8 szMethodName)
{
STANDARD_VM_CONTRACT;
BuildMethodTableThrowException(COR_E_TYPELOAD, idResWhy, szMethodName);
}
private:
MethodNameHash *CreateMethodChainHash(
MethodTable *pMT);
HRESULT LoaderFindMethodInClass(
LPCUTF8 pszMemberName,
Module* pModule,
mdMethodDef mdToken,
MethodDesc ** ppMethodDesc,
PCCOR_SIGNATURE * ppMemberSignature,
DWORD * pcMemberSignature,
DWORD dwHashName,
BOOL * pMethodConstraintsMatch);
// Finds a method declaration from a MemberRef or Def. It handles the case where
// the Ref or Def point back to this class even though it has not been fully
// laid out.
HRESULT FindMethodDeclarationForMethodImpl(
IMDInternalImport *pMDInternalImport, // Scope in which tkClass and tkMethod are defined.
mdTypeDef tkClass, // Type that the method def resides in
mdToken tkMethod, // Token that is being located (MemberRef or MethodDef)
mdToken* ptkMethodDef); // Method definition for Member
// Enumerates the method impl token pairs and resolves the impl tokens to mdtMethodDef
// tokens, since we currently have the limitation that all impls are in the current class.
VOID EnumerateMethodImpls();
VOID EnumerateClassMethods();
// Allocate temporary memory for tracking all information used in building the MethodTable
VOID AllocateMethodWorkingMemory();
VOID BuildInteropVTable_InterfaceList(
BuildingInterfaceInfo_t **ppBuildingInterfaceList,
WORD *pcBuildingInterfaceList);
VOID BuildInteropVTable_PlaceMembers(
bmtTypeInfo* bmtType,
DWORD numDeclaredInterfaces,
BuildingInterfaceInfo_t *pBuildingInterfaceList,
bmtMethodInfo* bmtMethod,
bmtErrorInfo* bmtError,
bmtProperties* bmtProp,
bmtParentInfo* bmtParent,
bmtInterfaceInfo* bmtInterface,
bmtMethodImplInfo* bmtMethodImpl,
bmtVtable* bmtVT);
VOID BuildInteropVTable_ResolveInterfaces(
BuildingInterfaceInfo_t *pBuildingInterfaceList,
bmtTypeInfo* bmtType,
bmtInterfaceInfo* bmtInterface,
bmtVtable* bmtVT,
bmtParentInfo* bmtParent,
const bmtErrorInfo & bmtError);
VOID BuildInteropVTable_CreateInterfaceMap(
BuildingInterfaceInfo_t *pBuildingInterfaceList,
bmtInterfaceInfo* bmtInterface,
WORD *pwInterfaceListSize,
DWORD *pdwMaxInterfaceMethods,
MethodTable *pParentMethodTable);
VOID BuildInteropVTable_ExpandInterface(
InterfaceInfo_t *pInterfaceMap,
MethodTable *pNewInterface,
WORD *pwInterfaceListSize,
DWORD *pdwMaxInterfaceMethods,
BOOL fDirect);
VOID BuildInteropVTable_PlaceVtableMethods(
bmtInterfaceInfo* bmtInterface,
DWORD numDeclaredInterfaces,
BuildingInterfaceInfo_t *pBuildingInterfaceList,
bmtVtable* bmtVT,
bmtMethodInfo* bmtMethod,
bmtTypeInfo* bmtType,
bmtErrorInfo* bmtError,
bmtProperties* bmtProp,
bmtParentInfo* bmtParent);
VOID BuildInteropVTable_PlaceMethodImpls(
bmtTypeInfo* bmtType,
bmtMethodImplInfo* bmtMethodImpl,
bmtErrorInfo* bmtError,
bmtInterfaceInfo* bmtInterface,
bmtVtable* bmtVT,
bmtParentInfo* bmtParent);
VOID BuildInteropVTable_PlaceLocalDeclaration(
mdMethodDef mdef,
MethodDesc* body,
bmtTypeInfo* bmtType,
bmtErrorInfo* bmtError,
bmtVtable* bmtVT,
DWORD* slots,
MethodDesc** replaced,
DWORD* pSlotIndex,
PCCOR_SIGNATURE* ppBodySignature,
DWORD* pcBodySignature);
VOID BuildInteropVTable_PlaceInterfaceDeclaration(
MethodDesc* pDecl,
MethodDesc* pImplBody,
const Substitution *pDeclSubst,
bmtTypeInfo* bmtType,
bmtInterfaceInfo* bmtInterface,
bmtErrorInfo* bmtError,
bmtVtable* bmtVT,
DWORD* slots,
MethodDesc** replaced,
DWORD* pSlotIndex,
PCCOR_SIGNATURE* ppBodySignature,
DWORD* pcBodySignature);
VOID BuildInteropVTable_PlaceParentDeclaration(
MethodDesc* pDecl,
MethodDesc* pImplBody,
const Substitution *pDeclSubst,
bmtTypeInfo* bmtType,
bmtErrorInfo* bmtError,
bmtVtable* bmtVT,
bmtParentInfo* bmtParent,
DWORD* slots,
MethodDesc** replaced,
DWORD* pSlotIndex,
PCCOR_SIGNATURE* ppBodySignature,
DWORD* pcBodySignature);
VOID BuildInteropVTable_PropagateInheritance(
bmtVtable *bmtVT);
VOID FinalizeInteropVTable(
AllocMemTracker *pamTracker,
LoaderAllocator*,
bmtVtable*,
bmtInterfaceInfo*,
bmtTypeInfo*,
bmtProperties*,
bmtMethodInfo*,
bmtErrorInfo*,
bmtParentInfo*,
InteropMethodTableData**);
}; // MethodTableBuilder
}; // Namespace ClassCompat
#endif // FEATURE_COMINTEROP
#endif // !CLASSCOMPAT_H
|
9bff634eb97001b8da60d030e4c2be43955e2591 | 0782f9e1df8b7eb0e0e9be12b0dd596c5a117887 | /src/Periodico.cpp | e54127c6882bc4e1fae7598dd99d57847276f7c7 | [] | no_license | gtroja/qjgo | 4084642c23aa6af3c8ae661cad0abb5930159d24 | e0b7b71be85c84b75fc8977f11e8ea401ebb4f4b | refs/heads/master | 2020-07-01T15:09:21.791333 | 2019-10-02T04:06:50 | 2019-10-02T04:06:50 | 74,335,723 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 349 | cpp | Periodico.cpp | #include <stdlib.h>
#include "../include/Periodico.h"
Periodico::Periodico(){
time = NULL;
criado = 0;
ultimaVezAtualizado = 0;
}
void Periodico::atualiza(){
if(time != NULL)
ultimaVezAtualizado = *time;
}
void Periodico::setTime(unsigned int* t){
time = t;
criado = *time;
ultimaVezAtualizado = *time;
d("setei um time %i",*time);
}
|
c182ef40ffa8015e1f35c47874b61aafead2e156 | ce48dee9646cdd2cec100cef97abc68a8a36f5b9 | /cMotions.h | ba1b3619eb9edd337af9f79605ab33dcaa012bae | [] | no_license | srwing/starfield | af0b73a57c6840b44e68e356d7cb67688f9521b0 | 844d79ae6f39d7b7eb9c27cc6e4baa5d17639937 | refs/heads/main | 2023-03-14T03:36:20.212846 | 2021-02-28T20:26:05 | 2021-02-28T20:26:05 | 342,710,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,100 | h | cMotions.h | #ifndef CMOTIONS
#define CMOTIONS
//#include <windows.h>
#include <SDL/SDL_opengl.h>
#include <GL/glut.h>
#include <SDL/sdl.h>
#include <vector>
#include <math.h>
#include "Vec3.h"
#include "camera.h"
#include "cresponse.h"
extern CCamera camera;
extern GLboolean getResponse;
extern Vec3 stopPosition, startPosition;
extern Vec3 viewdir;
extern GLboolean g_egocentric;
extern Vec3 g_ego;
extern Vec3 g_ego_t;
bool invert=false;
class instructions
{
public:
float xangle, yangle, distance;
int count;
boolean initialized;
instructions()
{count=0;initialized=false;}
/* init()
{
if (!initialized)
count=0;
}
*/
//quadrant(x,y), angle
//-1,1, 45 = left, up, 45 (oblique)
instructions(float x, float y, float dist)
{
xangle=x;
yangle=y;
distance = dist;
count++;
}
};
/* zt=sqrt(xt*xt+yt*yt);
az=sqrt(ax*ax+ay*ay);
xt=sin(ax);
yt=sin(ay);
zt=cos(xt)+cos(yt);
xt=~ ax ...
float yangle = atan(ax/az); //left-right
float xangle = atan(ay/az); //up-down
float zangle = atan(ax/ay)
ax ~ yangle
//zt=.8; ax+=0.1; xt=ax; was interesting
//camera.UpVector.x;
//camera.RightVector.x
//rotatex= ViewDir = ViewDir*cos(Angle) + UpVector*sin(Angle);
// ViewDir.normalize();
// UpVector = (ViewDir*RightVector)*-1;
//roty = ViewDir = (ViewDir*cos(Angle)- RightVector*sin(Angle));
// ViewDir.normalize();
// RightVector = (ViewDir*UpVector);
//rotz = RightVector = (RightVector*cos(Angle)+ UpVector*sin(Angle));
// RightVector.normalize();
// UpVector = (ViewDir*RightVector)*-1;
//y axis: yaw = arctan( (x2-x1) / (z2 - z1))
//x axis: pitch = arctan( (z2-z1) / (y2 - y1))
//z axis: roll = arctan( (y2-y1) / (x2 - x1))
// tan(ya) = x/z = sin(ya)/cos(ya)
//yt = zt/tan(viewangle);
//v=dx/dt
//in 2d w = d angle/dt - rate of change of the angle
//in 3d with fixed axis, angular speed = d angle/dt
//but to get angular velocity(w) we need the plane it is rotating in
//axis-angle
//viewangle is rotation, cross prod gives axis?
//angular vel = 0.01
//z=0.8;zt=-0.8 - what about direction???
//distance+=??? zt? x*x+y*y?
*/
//don't want to use repeat - with constant rate distance is measured by count
class cMotions
{
private:
GLfloat as; // angle scale
GLfloat ts; // trans scale
int t;
float viewangle, xangle, yangle, distance;
Vec3 vdir;
float degviewangle;
GLint repeat;
GLfloat ax;
GLfloat ay;
GLfloat az;
GLfloat xt;
GLfloat yt;
GLfloat zt;
GLboolean xscriptdone, yscriptdone, zscriptdone;
void ChangeSize(int array_size);
void PrintArray();
void ChangeVelocity(GLfloat vel);
void ChangePitch(GLfloat amount);
void ChangeHeading(GLfloat amount);
void queryResponse();
Vec3 startVec, xVec, yVec;
GLint numloops, loopcounter;//for straight segments ...
GLfloat increment;
GLfloat vel;
GLfloat dx, dy, dz;
GLfloat step;
GLint prescriptcounter;
public:
// std::vector<instructions *> instruction;
// std::vector<instructions>::size_type count;
instructions * script;
GLint scriptcounter;
GLboolean initialized;
Vec3 currentvec;
int numScripts;
cMotions() //constructor
{
as=10; // angle scale
ts=0.8; // trans scale
t=0;
viewangle = 0.0;
scriptcounter=0;
initialized = GL_FALSE;
numScripts=8;
script = new instructions[numScripts];
script[0] = instructions(30.0, 0.0, 50.0);
script[1] = instructions(30.0, -30.0, 50.0);
script[2] = instructions(0.0, 0.0, 50.0);
script[3] = instructions(-60.0, 0.0, 50.0);
script[4] = instructions(60.0, 0.0, 50.0);
script[5] = instructions(0.0, 0.0, 50.0);
script[6] = instructions(-30.0, 0.0, 50.0);
script[7] = instructions(-30.0, 0.0, 50.0);
numloops=100;//want the number of loops to get to 15 degrees
loopcounter=0;
dx=0.0; dy=0.0; dz=0.0;
scriptcounter=0;
step=0.01;
prescriptcounter=0;
init();
}
~cMotions()
{
delete[] script;
}
void init()
{
if (!initialized) //init
{
yscriptdone=GL_FALSE;
yscriptdone=GL_FALSE;
zscriptdone=GL_FALSE;
initialized=GL_TRUE;
currentvec.set(0.0,0.0,-1.0);
currentvec.x=0.0;
currentvec.y=0.0;
currentvec.z=-1.0;
viewangle=0.0;
startVec=Vec3(0.0,0.0,-1.0);
increment=0.01;
vel=0.8;
ax=0.0; ay=0.0; az=0.0;
xt=0.0; yt=0.0; zt=0.8;
xangle=0.0;
yangle=0.0;
}
}
void runScripts()
{
init();
/**********************
opengl uses degrees
c++ uses radians
yet setting ax+=0.01 and treating as radians seemed to work well
although ax is not degrees? as viewdir it is a view point
for small angles degrees~= radians
set ax = degrees in x, increment by 0.01 = deg,rad ; 15 deg=1500 iterations
ax, ay =~ viewangle / 10;
calc arc assuming constant z 0f .8
2 pi r; s=r*angle; distance = .8 * 100=s
r=s/angle;
15 deg : r=80/15; y=sin(angle); x=cos(angle)
30 deg :
45 deg :
***********************/
GLfloat ydeg, xdeg;
if (scriptcounter<numScripts)
{
vdir=camera.GetViewDir();
//viewdir.SetVector(&viewdir, &startVec, 1);
vdir.normalize();
float tmp = vdir.innerProduct(currentvec);
// tmp = viewdir.innerProduct(currentvec);//important
if (tmp>1.0) tmp=1.0;
viewangle = acos(tmp);//treat it as radians
viewangle= R2D(viewangle);
//want xangle diff between current vec
//if ay and az = currentvec then diff will be xangle?
Vec3 tmpvec;
tmpvec.set(vdir.x, 0.0, -1.0);
tmpvec.normalize();
tmp=tmpvec.innerProduct(currentvec);
tmp=fabs(vdir.x-currentvec.x);
if (tmp>1.0) tmp=1.0;
// xangle=acos(tmp);
// xangle=tmp;
// xangle=R2D(xangle);
xangle=asin(vdir.x-currentvec.x);//viewangle;
tmpvec.set(0.0, vdir.y, -1.0);
tmp=tmpvec.innerProduct(currentvec);
tmp=fabs(vdir.y-currentvec.y);
if (tmp>1.0) tmp=1.0;
// yangle=acos(tmp);
yangle=tmp;
// yangle=R2D(yangle);
yangle=asin(vdir.y-currentvec.y);//viewangle;
ydeg=R2D(yangle);
xdeg=R2D(xangle);
xangle=xdeg;
yangle=ydeg;
//having trouble when angle approaches 90, hence:
xangle=viewangle;
yangle=viewangle;
if (script[scriptcounter].xangle==15.0 || script[scriptcounter].yangle==15.0)
step=0.01/2;
else if (script[scriptcounter].xangle==30.0 || script[scriptcounter].yangle==30.0)
step=0.01;
else if (script[scriptcounter].xangle==45.0 || script[scriptcounter].yangle==45.0)
step=1.5*0.01;
else if (script[scriptcounter].xangle==60.0 || script[scriptcounter].yangle==60.0)
step=2*0.01;
if (script[scriptcounter].xangle!=0.0 )
{
if (fabs(xangle)<fabs(script[scriptcounter].xangle))
// if (fabs(viewangle)<fabs(script[scriptcounter].xangle))
{//increment/decrement until we reach desired angle
if(script[scriptcounter].xangle>0.0)
ChangeHeading(step);//calcs ax
//ax+=0.01;
else if(script[scriptcounter].xangle<0.0)
ChangeHeading(-step);//calcs ax
//ax-=0.01;
if (ax-dx > step)
ax=dx+step;
xt = cos(vdir.x)*vdir.z;//ax);
//yt = sin(viewangle);//yangle);
yt=0.0;
// zt = 0.8;// * sin(xangle);
} else {
xscriptdone=GL_TRUE;
}
}
if (script[scriptcounter].yangle != 0.0)
{
if (fabs(yangle)<fabs(script[scriptcounter].yangle))
{//increment/decrement until we reach desired angle
if(script[scriptcounter].yangle>0.0)
ChangePitch(step);//calcs ax
else if(script[scriptcounter].yangle<0.0)
ChangePitch(-step);//calcs ax
//ay+=.01;
// xt = sin(viewangle);//xangle);
if (ay-dy > step)
ay=dy+step;
yt = cos(vdir.y);//*vdir.z;//ay);//yangle);
// zt = 0.8;// * sin(xangle);
} else {
yscriptdone=GL_TRUE;
}
}
if (script[scriptcounter].yangle==0.0 && script[scriptcounter].xangle==0.0)
//if (script[scriptcounter].distance!=0.0)
{//straight
if (distance < script[scriptcounter].distance)
{
if (script[scriptcounter].xangle==0.0 && script[scriptcounter].yangle==0.0)
zt = 0.8;
else
zt=1.0;
distance+=zt;
xt=yt=0.0;
} else {
zscriptdone=GL_TRUE;
}
}
//moving changes viewdir??
if (prescriptcounter<50)//straight for 50 loops before script item
{
//scriptcounter=0;
ax=0.0;ay=0.0;
prescriptcounter++;
startPosition=camera.GetPosition();
}
camera.SetViewDir(ax,ay,-zt);
camera.Movexyz(ax,ay,-zt);
g_ego.x-=xt;g_ego.y-=yt;g_ego.z-=zt;
g_ego_t=g_ego_t-camera.GetViewDir();
dx=ax;
dy=ay;
Vec3 zvec, sv, normal;
GLfloat vecangle;
if (g_egocentric!=GL_TRUE)
{
zvec.set(startPosition.x-0.0, startPosition.y-0.0, startPosition.z-stopPosition.z);
zvec.normalize();
sv.SetVector(&stopPosition, &startPosition, 1);//create vector from stop to start
normal=zvec*sv;//cross product
vecangle=-(acos(sv.innerProduct(zvec))*180)/PI;
} else {
zvec.set(startPosition.x-0.0, startPosition.y-0.0, g_ego.z-startPosition.z);
zvec.normalize();
sv.SetVector(&startPosition, &g_ego, 1);//create vector from stop to start
normal=zvec*sv;//cross product
vecangle=(acos(sv.innerProduct(zvec))*180)/PI;
}
zt=.8;
// glTranslatef(ax,ay,zt);
// zt-=.8;
// glRotated(sqrt(ax*ax+ay*ay), normal.x, normal.y, normal.z);//stopVector.x, stopVector.y, stopVector.z);
if (xscriptdone==GL_TRUE || yscriptdone==GL_TRUE || zscriptdone==GL_TRUE)
{
scriptcounter++;
xscriptdone=GL_FALSE;
yscriptdone=GL_FALSE;
zscriptdone=GL_FALSE;
currentvec=camera.GetViewDir();
// currentvec.SetVector(¤tvec, &startVec, 1);
currentvec.normalize();
xt=yt=zt=0.0;
loopcounter=0;
distance=0;
queryResponse();
}
} else {
// queryResponse();
scriptcounter=0;
}
}
};
void cMotions::queryResponse()
{
stopPosition=camera.GetPosition();
viewdir=camera.GetViewDir();
//init();
prescriptcounter=0;
initialized=false;
getResponse=GL_TRUE;
//setting getResponse=true tells starfield.cpp to run cresponse
//afterwich cstarfield::idlefunc() sets position to (0,0,-.8)
//sets g_eqo to 0. g_ego_t=0
//so reset currentvec ax, ay, az, xt, yt, zt, ...
}
void cMotions::ChangeSize(int array_size){
delete[ ] script;
script = new instructions[array_size];
for(int i=0; i<array_size; i++)
script[i] = instructions(-1, 0, 30);
numScripts = array_size;
}
void cMotions::PrintArray(){
/* for(int i=0; i<size; i++)
cout<<the_array[i]<<",";
cout<<endl;
*/
}
void cMotions::ChangeHeading(GLfloat amount)//direction is script[].angle, for sign
{//returns ax checking for orientation
//ax somehow roughly = radians
GLfloat heading, pitch, x, y, z, mul;
camera.GetViewDir(&x, &y, &z);
//pitch = R2D(acos(Vec3(0.0,y,-1.0).innerProduct(Vec3(0.0,0.0,-1.0))));
// GLfloat heading = R2D(acos(Vec3(x,0.0,-1.0).innerProduct(Vec3(0.0,0.0,-1.0))));
//ay=sin(angle)
pitch=asin(vdir.y/vdir.z);
//pitch=atan(vdir.z/vdir.y);
//90-pitch = correct angle ???
//float tmp=R2D(pitch);
heading = asin(vdir.x/vdir.z);///vdir.z);
//heading=atan(vdir.x/vdir.z);
//sin a =y/z;y=z*sina
//y axis: yaw = arctan( (x2-x1) / (z2 - z1))
//x axis: pitch = arctan( (z2-z1) / (y2 - y1))
//z axis: roll = arctan( (y2-y1) / (x2 - x1))
//amount=atan((vdir.x+amount)/(-1*vdir.z));
if(pitch > 1.5708 && pitch < 4.7124 || (pitch < -1.5708 && pitch > - 4.7124))
{
// ax -= amount;
}
else
{
// ax += amount;
}
//can't convert ax,ay to deg
//1.5708r = 90 deg
//4.7124r = 270deg
//6.2832 = 360
// We don't want our heading to run away from us either. Although it
// really doesn't matter I prefer to have my heading degrees
// within the range of -360.0f to 360.0f
if(heading > 6.2832)
{
heading -= 6.2832;
}
else if(heading < -6.2832)
{
heading += 6.2832;
}
GLfloat inc=0.0;
if(ay > 1.5708 && ay < 4.7124 || (ay < -1.5708 && ay > - 4.7124))//upside down=reverse x movements
invert=true;
if (ax>1.5708 || ax < -1.5708)
invert=true; //reverse
if (invert)
ax-=amount;
else
ax+=amount;
//if (heading > 90 || heading < 90) zt=-zt;
/* if (direction < 0.0)
ax-=mul * increment;
else
ax+=mul * increment;
*/
// ax=D2R(heading);
}
void cMotions::ChangePitch(GLfloat amount)//direction is script[].angle, for sign
{
GLfloat pitch, x, y, z, mul;
camera.GetViewDir(&x, &y, &z);
// pitch = R2D(acos(Vec3(0.0,y,-1.0).innerProduct(Vec3(0.0,0.0,-1.0))));
ay += amount;
pitch=asin(vdir.y);//R2D(ay);
// We don't want our pitch to run away from us. Although it
// really doesn't matter I prefer to have my pitch degrees
// within the range of -360.0f to 360.0f
if(pitch > 6.2832)//360.0f)
{
ay -= 6.2832;
}
else if(pitch < -6.2832)
{
ay += 6.2832;
}
//ay=D2R(pitch);
}
void cMotions::ChangeVelocity(GLfloat vel)
{
/* if(fabs(vel) < fabs(m_MaxForwardVelocity))
{
// Our velocity is less than the max velocity increment that we
// defined so lets increment it.
m_ForwardVelocity += vel;
}
else
{
// Our velocity is greater than the max velocity increment that
// we defined so we can only increment our velocity by the
// maximum allowed value.
if(vel < 0)
{
// We are slowing down so decrement
m_ForwardVelocity -= -m_MaxForwardVelocity;
}
else
{
// We are speeding up so increment
m_ForwardVelocity += m_MaxForwardVelocity;
}
}
*/
}
#endif
|
6dcf03dedbe85f38ca164e1226dc9106b2db5e1a | 65233d7fa4e2f204e4f66863ae707268677dffb6 | /main.cpp | eff4496145d0746fc09e2a594c384be2d24d60ab | [] | no_license | mguillemot/kamaku.prototype | 48ab4506b264296190402fc4a83d6bb33d7cbd52 | c01f52f16539e3138d915c3f3fbd7d35bce59eac | refs/heads/master | 2021-01-01T16:34:33.169958 | 2007-04-11T12:47:42 | 2007-04-11T12:47:42 | 2,226,828 | 0 | 0 | null | null | null | null | ISO-8859-2 | C++ | false | false | 20,635 | cpp | main.cpp | #include <algorithm>
#include <cstdlib>
#include <iostream>
#include <math.h>
#include <stdexcept>
#include <string>
#include <sstream>
#include <list>
#include "bullet.h"
#include "SDL.h"
#include "SDL_ttf.h"
#include "SDL_mixer.h"
#include "settings.h"
#include "timer.h"
#include "sprite.h"
#include "star.h"
#include "enemy.h"
#include "sm.h"
#include "gamecolor.h"
#ifdef main
#undef main
#endif
Uint32 hitboxColor, starColor;
std::list<Bullet *> enemyBullets, myBullets;
Sprite *vaisseau = NULL;
bool show_hitbox = false;
SDL_Surface *screen = NULL;
struct Arrow
{
int column;
int time;
};
int main(int argc, char *argv[])
{
SDL_Surface *message = NULL;
SDL_Surface *hitCount = NULL;
SDL_Event event;
TTF_Font *font = NULL;
Mix_Music *music = NULL;
Mix_Chunk *collision = NULL;
bool quit = false;
bool move_up = false;
bool move_down = false;
bool move_left = false;
bool move_right = false;
std::list<Enemy *> enemies;
bool sound = false;
int frame = 0;
Timer fps;
int hits = 0;
SDL_Color textColor = {255, 255, 255};
Uint32 bgColor, laserYellow, laserLightblue, laserPurple;
std::list<Star *> stars;
bool fireLaser = false, fireShot = false, fireBomb = false;
bool button1 = false, button2 = false, button3 = false;
SDL_Rect fireRect;
int destroyed = 0;
GameColor shotColor = None;
GameColor laserColor = None;
if (SDL_Init(SDL_INIT_EVERYTHING) == -1)
{
printf("Could not initialize SDL: %s.\n", SDL_GetError());
exit(-1);
}
screen = SDL_SetVideoMode(SCREEN_WIDTH, SCREEN_HEIGHT, 16, SDL_SWSURFACE);
if (screen == NULL)
{
fprintf(stderr, "Couldn't set required video mode: %s\n",
SDL_GetError());
exit(1);
}
SDL_WM_SetCaption("Kamaku", NULL);
Mix_OpenAudio(22050, MIX_DEFAULT_FORMAT, 2, 4096);
music = Mix_LoadMUS("justice.wav");
collision = Mix_LoadWAV("hit.wav");
TTF_Init();
font = TTF_OpenFont("times.ttf", 28);
if (font == NULL)
{
fprintf(stderr, "Couldn't open font: TIMES.TTF\n");
exit(1);
}
SDL_Rect vaisseauHitbox = {10, 11, 8, 9};
SDL_Rect bouletteHitbox = {2, 2, 4, 4};
vaisseau = new Sprite("vaisseau.bmp");
vaisseau->set_hitbox(vaisseauHitbox);
vaisseau->set_position(SCREEN_WIDTH / 2 - 20, SCREEN_HEIGHT - 80);
for (int i = 0; i < NB_STARS; i++)
{
stars.push_back(new Star());
}
starColor = SDL_MapRGB(screen->format, 0xAF, 0xAF, 0xAF);
bgColor = SDL_MapRGB(screen->format, 0, 0, 0);
hitboxColor = SDL_MapRGB(screen->format, 0, 0xFF, 0);
laserYellow = SDL_MapRGB(screen->format, 0xFF, 0xFF, 0);
laserLightblue = SDL_MapRGB(screen->format, 0xFF, 0, 0xFF);
laserPurple = SDL_MapRGB(screen->format, 0, 0xFF, 0xFF);
hitCount = TTF_RenderText_Solid(font, "Not hit yet!", textColor);
/*
for (int jj = 0; jj < 4; jj++)
{
for (int ii = 0; ii < 7; ii++)
{
Enemy *e = new SpaceInvaderEnemy();
e->sprite().set_position(10 + ii * 50, 10 + jj * 42);
enemies.push_back(e);
}
}
*/
SilentEnemy *migi = new SilentEnemy();
migi->sprite().set_position(SCREEN_WIDTH - 60, 40);
//enemies.push_back(migi);
SilentEnemy *hidari = new SilentEnemy();
hidari->sprite().set_position(30, 40);
//enemies.push_back(hidari);
if (Mix_PlayingMusic() == 0)
{
Mix_PlayMusic(music, -1);
Mix_PauseMusic();
}
SMfile sm;
load_sm(&sm, "justice.sm");
SDL_Rect noteRect[4];
noteRect[0].x = 50;
noteRect[0].w = 50;
noteRect[0].y = 50;
noteRect[0].h = 50;
noteRect[1].x = 150;
noteRect[1].w = 50;
noteRect[1].y = 50;
noteRect[1].h = 50;
noteRect[2].x = 250;
noteRect[2].w = 50;
noteRect[2].y = 50;
noteRect[2].h = 50;
noteRect[3].x = 350;
noteRect[3].w = 50;
noteRect[3].y = 50;
noteRect[3].h = 50;
Uint32 beatColor = SDL_MapRGB(screen->format, 0xFF, 0x00, 0x00);
Uint32 beatBgColor = SDL_MapRGB(screen->format, 0x40, 0x40, 0x40);
Uint32 beatFgColor = SDL_MapRGB(screen->format, 0x80, 0x80, 0x80);
Timer beatTimer;
int offset = (int)(sm.offset * 1000);
int start_at = 1000 + offset;
float bpm = 60000.0f / sm.bpms[0].bpm;
Level level = sm.level[3];
int consumed = 0;
std::list<Arrow> arrows;
int m;
float time = (float)start_at; // pkoi faut-il ajouter le décalage musical 2x ??
for (m = 0; m < level.measure_nb; m++)
{
int n;
for (n = 0; n < level.measure[m].notes_nb; n++)
{
int t;
for (t = 0; t < 4; t++)
{
if (level.measure[m].notes[n].tap[t] == TAP)
{
Arrow a;
a.column = t;
a.time = (int)time;
arrows.push_back(a);
}
}
time += 4 * bpm / level.measure[m].notes_nb;
}
}
Mix_ResumeMusic();
beatTimer.start();
while (quit == false)
{
fps.start();
while (SDL_PollEvent(&event))
{
if (event.type == SDL_KEYDOWN)
{
switch (event.key.keysym.sym)
{
case SDLK_ESCAPE:
quit = true;
break;
case SDLK_e:
move_up = true;
break;
case SDLK_d:
move_down = true;
break;
case SDLK_s:
move_left = true;
break;
case SDLK_f:
move_right = true;
break;
case SDLK_h:
show_hitbox = !show_hitbox;
break;
case SDLK_o:
if (Mix_PausedMusic())
{
Mix_ResumeMusic();
}
else
{
Mix_PauseMusic();
}
break;
case SDLK_p:
sound = !sound;
break;
case SDLK_j:
button1 = true;
break;
case SDLK_k:
button2 = true;
break;
case SDLK_l:
button3 = true;
break;
}
}
else if (event.type == SDL_KEYUP)
{
switch (event.key.keysym.sym)
{
case SDLK_e:
move_up = false;
break;
case SDLK_d:
move_down = false;
break;
case SDLK_s:
move_left = false;
break;
case SDLK_f:
move_right = false;
break;
case SDLK_j:
button1 = false;
break;
case SDLK_k:
button2 = false;
break;
case SDLK_l:
button3 = false;
break;
}
}
else if (event.type == SDL_QUIT)
{
quit = true;
}
}
if (button1 && button2 && button3)
{
fireShot = false;
fireLaser = false;
fireBomb = true;
}
else if (button1 && button2)
{
fireShot = false;
fireLaser = true;
laserColor = Yellow;
fireBomb = false;
}
else if (button1 && button3)
{
fireShot = false;
fireLaser = true;
laserColor = Purple;
fireBomb = false;
}
else if (button2 && button3)
{
fireShot = false;
fireLaser = true;
laserColor = Lightblue;
fireBomb = false;
}
else if (button1)
{
fireShot = true;
shotColor = Red;
fireLaser = false;
fireBomb = false;
}
else if (button2)
{
fireShot = true;
shotColor = Green;
fireLaser = false;
fireBomb = false;
}
else if (button3)
{
fireShot = true;
shotColor = Blue;
fireLaser = false;
fireBomb = false;
}
else
{
fireShot = false;
fireLaser = false;
fireBomb = false;
}
SDL_FillRect(screen, NULL, bgColor);
for (std::list<Star *>::iterator i = stars.begin(); i != stars.end(); i++)
{
(*i)->display(screen);
(*i)->update();
}
float sx = 0;
float sy = 0;
float sp;
if (fireLaser)
{
sp = SHIP_FIRE_SPEED;
}
else
{
sp = SHIP_NORMAL_SPEED;
}
if (move_up)
{
sy -= sp;
}
if (move_down)
{
sy += sp;
}
if (move_left)
{
sx -= sp;
}
if (move_right)
{
sx += sp;
}
vaisseau->set_speed(sx, sy);
vaisseau->update_position();
vaisseau->display(screen);
if (fireLaser)
{
fireRect.x = vaisseau->position().x - 5 + vaisseau->position().w / 2;
fireRect.y = 0;
fireRect.w = 10;
fireRect.h = vaisseau->position().y;
}
if (destroyed == 28)
{
destroyed = 0;
Enemy *e = new RotatingEnemy();
e->sprite().set_position(rand() % 380 + 50, -20);
e->sprite().set_speed(0.0f, 2.0f);
enemies.push_back(e);
}
if ((frame % 120) == 0)
{
Enemy *e = new RandomColorTarget();
e->sprite().set_position(rand() % 140 + 50, -20);
e->sprite().set_speed(0.0f, 0.8f);
enemies.push_back(e);
}
Enemy *hitByLaser = NULL;
std::list<Enemy *>::iterator j = enemies.begin();
while (j != enemies.end())
{
Enemy *e = *j;
e->update();
if (e->killed() && e->killedTime() == 20)
{
delete e;
j = enemies.erase(j);
destroyed++;
}
else
{
e->sprite().update_position();
if (fireLaser)
{
if (Sprite::intersects(fireRect, e->sprite().hitbox()) && !e->killed())
{
int lower = e->sprite().position().y + e->sprite().position().h;
int newHeight = fireRect.y + fireRect.h - lower;
fireRect.y = lower;
fireRect.h = newHeight;
hitByLaser = e;
}
}
e->sprite().display(screen);
j++;
}
}
if (fireLaser)
{
Uint32 c = 0;
if (laserColor == Yellow)
{
c = laserYellow;
}
else if (laserColor == Lightblue)
{
c = laserLightblue;
}
else
{
c = laserPurple;
}
SDL_FillRect(screen, &fireRect, c);
if (hitByLaser != NULL)
{
hitByLaser->hit_by(LASER_STRENGTH);
}
}
/*
SDL_Rect blackHole;
blackHole.x = 200;
blackHole.y = 400;
blackHole.w = 100;
blackHole.h = 100;
SDL_FillRect(screen, &blackHole, fireColor);
*/
std::list<Bullet *>::iterator i = enemyBullets.begin();
while (i != enemyBullets.end())
{
Bullet *b = *i;
b->update();
if (b->sprite().dead())
{
delete b;
i = enemyBullets.erase(i);
}
else
{
b->sprite().display(screen);
/*
if (Sprite::intersects(blackHole, b->sprite().hitbox()))
{
b->set_direction(b->direction() + 0.1f);
}
*/
if (vaisseau->collides_with(&b->sprite()))
{
hits++;
std::string hitTxt = "Hits: ";
std::string nbOfHits;
std::stringstream ss;
ss << hits;
ss >> nbOfHits;
hitTxt += nbOfHits;
SDL_FreeSurface(hitCount);
hitCount = TTF_RenderText_Solid(font, hitTxt.c_str(), textColor);
if (sound)
{
Mix_PlayChannel(-1, collision, 0);
}
delete b;
i = enemyBullets.erase(i);
}
else
{
i++;
}
}
}
Sprite::apply_surface(5, 40, hitCount, screen);
std::list<Bullet *>::iterator k = myBullets.begin();
while (k != myBullets.end())
{
Bullet *b = *k;
b->update();
if (b->sprite().dead())
{
delete b;
k = myBullets.erase(k);
}
else
{
b->sprite().display(screen);
bool impact = false;
for (std::list<Enemy *>::iterator kk = enemies.begin(); kk != enemies.end(); kk++)
{
Enemy *e = *kk;
if (e->collides_with(b))
{
e->hit_by(BULLET_STRENGTH);
delete b;
k = myBullets.erase(k);
impact = true;
break;
}
}
if (!impact)
{
k++;
}
}
}
/*
if (beatTimer.get_ticks() - consumed >= (int)bpm)
{
consumed += (int)bpm;
SDL_FillRect(screen, ¬eRect[0], beatFgColor);
SDL_FillRect(screen, ¬eRect[1], beatFgColor);
SDL_FillRect(screen, ¬eRect[2], beatFgColor);
SDL_FillRect(screen, ¬eRect[3], beatFgColor);
}
else
{
SDL_FillRect(screen, ¬eRect[0], beatBgColor);
SDL_FillRect(screen, ¬eRect[1], beatBgColor);
SDL_FillRect(screen, ¬eRect[2], beatBgColor);
SDL_FillRect(screen, ¬eRect[3], beatBgColor);
}
*/
while (!arrows.empty() && beatTimer.get_ticks() >= arrows.front().time)
{
if (arrows.front().column == LEFT_A)
{
// laser
}
else if (arrows.front().column == UP_A)
{
if (fireShot)
{
Bullet *b1 = new ColoredBullet(Sprite::center(vaisseau->position()), (float)M_PI + (float)M_PI_2, 20.0f, shotColor);
Bullet *b2 = new ColoredBullet(Sprite::center(vaisseau->position()), (float)M_PI + (float)M_PI_2 + 0.1f, 20.0f, shotColor);
Bullet *b3 = new ColoredBullet(Sprite::center(vaisseau->position()), (float)M_PI + (float)M_PI_2 - 0.1f, 20.0f, shotColor);
myBullets.push_back(b1);
myBullets.push_back(b2);
myBullets.push_back(b3);
}
}
/*
if (arrows.front().column == LEFT_A)
{
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.0f, 0, 40);
}
else if (arrows.front().column == RIGHT_A)
{
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.0f, 0, 40);
}
else if (arrows.front().column == UP_A)
{
migi->fire_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 15.0f, 0.0f, 1);
hidari->fire_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 15.0f, 0.0f, 1);
}
else if (arrows.front().column == DOWN_A)
{
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.1f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.2f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.3f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.4f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.1f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.2f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.3f, 0, 40);
hidari->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.4f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.1f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.2f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.3f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, 0.4f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.1f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.2f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.3f, 0, 40);
migi->fire_bordee_at(vaisseau->position().x + vaisseau->position().w / 2, vaisseau->position().y + vaisseau->position().h / 2, 20.0f, -0.4f, 0, 40);
}
*/
arrows.pop_front();
}
/*
int now = beatTimer.get_ticks();
for (std::list<Arrow>::iterator arrow_iter = arrows.begin(); arrow_iter != arrows.end(); arrow_iter++)
{
int future = (*arrow_iter).time - now;
int pos = 50 + future / 3;
if (pos >= 0 && pos < SCREEN_HEIGHT)
{
SDL_Rect r = noteRect[(*arrow_iter).column];
r.y = pos;
SDL_FillRect(screen, &r, beatColor);
}
}
*/
std::string nbFrame;
std::stringstream frameSs;
frameSs << frame;
frameSs >> nbFrame;
std::string frameTxt = "Frame #" + nbFrame;
SDL_FreeSurface(message);
message = TTF_RenderText_Solid(font, frameTxt.c_str(), textColor);
Sprite::apply_surface(5, 5, message, screen);
SDL_Flip(screen);
frame++;
while (fps.get_ticks() < 1000 / FRAMES_PER_SECOND)
{
SDL_Delay(1);
}
}
for (std::list<Bullet *>::iterator i = enemyBullets.begin(); i != enemyBullets.end(); i++)
{
delete *i;
}
for (std::list<Bullet *>::iterator i = myBullets.begin(); i != myBullets.end(); i++)
{
delete *i;
}
for (std::list<Enemy *>::iterator i = enemies.begin(); i != enemies.end(); i++)
{
delete *i;
}
for (std::list<Star *>::iterator i = stars.begin(); i != stars.end(); i++)
{
delete *i;
}
Mix_FreeMusic(music);
Mix_FreeChunk(collision);
SDL_FreeSurface(screen);
TTF_CloseFont(font);
TTF_Quit();
Mix_CloseAudio();
SDL_Quit();
printf("Quiting...\n");
//system("PAUSE");
return 0;
}
|
b1d5c2cd9482bfacf17bfb8bac473f18d1722c9b | cfeac52f970e8901871bd02d9acb7de66b9fb6b4 | /generated/src/aws-cpp-sdk-resource-groups/source/model/GroupConfigurationItem.cpp | fec4817ab7ebbe9c67d4e1befa96e01ea5660b35 | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | aws/aws-sdk-cpp | aff116ddf9ca2b41e45c47dba1c2b7754935c585 | 9a7606a6c98e13c759032c2e920c7c64a6a35264 | refs/heads/main | 2023-08-25T11:16:55.982089 | 2023-08-24T18:14:53 | 2023-08-24T18:14:53 | 35,440,404 | 1,681 | 1,133 | Apache-2.0 | 2023-09-12T15:59:33 | 2015-05-11T17:57:32 | null | UTF-8 | C++ | false | false | 1,868 | cpp | GroupConfigurationItem.cpp | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/resource-groups/model/GroupConfigurationItem.h>
#include <aws/core/utils/json/JsonSerializer.h>
#include <utility>
using namespace Aws::Utils::Json;
using namespace Aws::Utils;
namespace Aws
{
namespace ResourceGroups
{
namespace Model
{
GroupConfigurationItem::GroupConfigurationItem() :
m_typeHasBeenSet(false),
m_parametersHasBeenSet(false)
{
}
GroupConfigurationItem::GroupConfigurationItem(JsonView jsonValue) :
m_typeHasBeenSet(false),
m_parametersHasBeenSet(false)
{
*this = jsonValue;
}
GroupConfigurationItem& GroupConfigurationItem::operator =(JsonView jsonValue)
{
if(jsonValue.ValueExists("Type"))
{
m_type = jsonValue.GetString("Type");
m_typeHasBeenSet = true;
}
if(jsonValue.ValueExists("Parameters"))
{
Aws::Utils::Array<JsonView> parametersJsonList = jsonValue.GetArray("Parameters");
for(unsigned parametersIndex = 0; parametersIndex < parametersJsonList.GetLength(); ++parametersIndex)
{
m_parameters.push_back(parametersJsonList[parametersIndex].AsObject());
}
m_parametersHasBeenSet = true;
}
return *this;
}
JsonValue GroupConfigurationItem::Jsonize() const
{
JsonValue payload;
if(m_typeHasBeenSet)
{
payload.WithString("Type", m_type);
}
if(m_parametersHasBeenSet)
{
Aws::Utils::Array<JsonValue> parametersJsonList(m_parameters.size());
for(unsigned parametersIndex = 0; parametersIndex < parametersJsonList.GetLength(); ++parametersIndex)
{
parametersJsonList[parametersIndex].AsObject(m_parameters[parametersIndex].Jsonize());
}
payload.WithArray("Parameters", std::move(parametersJsonList));
}
return payload;
}
} // namespace Model
} // namespace ResourceGroups
} // namespace Aws
|
b7a65ae9b24e31aae0dcc4594a71c2c222c0dcd1 | 513ce92db3c9099915e0a72413556ba557276598 | /Medium/smallest_difference.cpp | 12910c9750f8ee9b89ca1cc8f3c418c74c525006 | [] | no_license | nabanitabag/Algoexpert-solutions-in-Cpp | 0665236120e5ee0904b1c94c1e00324abc0761d8 | 503265574f72ddc2f4314aefa12effae104885a3 | refs/heads/master | 2023-04-09T15:57:59.802201 | 2021-04-25T06:18:09 | 2021-04-25T06:18:09 | 345,366,897 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 74 | cpp | smallest_difference.cpp | vector<int> smallestDifference(vector<int> first, vector<int> second){
}
|
2171607deb5e025ab06a1a16440fae198642d77b | c1347ed26daebadb39b6c471588d04d068a7a661 | /UminekoPort/src/graphics/spritebatch.h | c070a4e78e06156951b02e0ed78925880d7ebfdc | [
"MIT"
] | permissive | seleara/UminekoPort | ba07165ff8127d4eee756c35d8932f1d12941f93 | da0c59a7462dba72e26146a8e2beb030984c0ad2 | refs/heads/master | 2020-03-11T16:07:49.451619 | 2019-01-05T00:35:06 | 2019-01-05T00:35:06 | 130,106,857 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 570 | h | spritebatch.h | #pragma once
#include <vector>
#include "../data/vertexbuffer.h"
#include "texture.h"
struct Sprite;
struct Transform;
class TextureResource;
class SpriteBatch {
public:
void add(const Sprite &sprite, const Transform &transform);
void clear();
void render(const std::string &shaderName = "2d");
size_t size() const {
return sprites_.size();
}
private:
std::vector<std::pair<size_t, Texture>> SpriteBatch::upload();
typedef std::pair<Sprite, Transform> SpritePair;
std::vector<std::pair<Sprite, Transform>> sprites_;
VertexBuffer<float> vertexBuffer_;
}; |
d61f5856f3c720da95d542ec83aa8b858de43db9 | e4f93064a729d05ec4ae014038f59347ad191273 | /legacy/thread_RRT.cpp | 55284834687e928498df6bc40e8d09a72372c1f2 | [] | no_license | joschu/surgical | 221c349f8ba4e2c9c636931232821ce320004bac | 5b26795b0cc2cb8ba02e3a4a27d2c0568134d83e | refs/heads/master | 2021-01-17T22:52:12.573487 | 2011-07-19T00:56:31 | 2011-07-19T00:56:31 | 1,912,239 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,946 | cpp | thread_RRT.cpp | #include "thread_RRT.h"
#include <time.h>
Thread_RRT::Thread_RRT()
{
currNodes.reserve(MAX_NUM_NODES);
}
Thread_RRT::~Thread_RRT()
{
}
void Thread_RRT::planPath(const Thread* start, const Thread* goal, vector<Thread_Motion>& movements, vector<Thread*>& intermediateThread)
{
RRT_Node startNode = RRT_Node(start);
RRT_Node goalNode = RRT_Node(goal);
initializeSearch(startNode, goalNode);
intermediateThread.push_back(new Thread(start));
intermediateThread.push_back(new Thread(goal));
/*
intermediateThread.push_back(new Thread(start));
MatrixXd resampled_1(33,3);
startNode.thread->getPoints(resampled_1);
MatrixXd resampled_2(17,3);
startNode.thread->getPoints(resampled_2);
intermediateThread.push_back(new Thread(startNode.thread, 17, 2));
intermediateThread.push_back(new Thread(resampled_2, 2, startNode.thread->length()));*/
bool goalReached = false;
double bestDistToGoal = DBL_MAX;
while (!goalReached && currNodes.size() < MAX_NUM_NODES)
{
std::cout << "curr ind" << currNodes.size() << std::endl;
//get a goal for this iteration
RRT_Node currGoal;
getNextGoal(goalNode, currGoal);
//find the nearest neighbor
int indClosest;
findClosestNode(currGoal, indClosest);
//find motion
Thread_Motion* nextMotion = new Thread_Motion();
findThreadMotion(currNodes[indClosest]->this_node, currGoal, *nextMotion);
//add new node
currNodes.push_back(new RRT_Node_And_Edge(currNodes[indClosest], nextMotion));
currNodes[indClosest]->this_node.applyMotion(currNodes.back()->this_node, *nextMotion);
double thisDistToGoal = goalNode.distanceToNode(currNodes.back()->this_node);
if (thisDistToGoal < bestDistToGoal)
{
bestDistToGoal = thisDistToGoal;
std::cout << "new best dist: " << bestDistToGoal << std::endl;
}
if (goalNode.distanceToNode(currNodes.back()->this_node) < GOAL_DISTANCE_THRESH)
{
goalReached = true;
}
}
int finalIndClosest;
findClosestNode(goalNode, finalIndClosest);
//count how many movements we need for the best solution
int numThreadsBetween = -1;
RRT_Node_And_Edge* currPtr = currNodes[finalIndClosest];
while (currPtr != NULL)
{
numThreadsBetween ++;
currPtr = currPtr->last_node;
}
//set the movements and intermediate threads for return
movements.resize(numThreadsBetween);
intermediateThread.resize(numThreadsBetween);
int movementInd = numThreadsBetween-1;
currPtr = currNodes[finalIndClosest];
while (movementInd >= 0)
{
movements[movementInd] = *(currPtr->motion_from_last);
intermediateThread[movementInd] = currPtr->this_node.thread;
currPtr->this_node.thread = NULL; //so we don't delete it!
movementInd--;
currPtr = currPtr->last_node;
}
/*intermediateThread.resize(currNodes.size());
for (int i=0; i < intermediateThread.size(); i++)
{
intermediateThread[i] = new Thread(currNodes[i]->this_node.thread);
}*/
//cleanup();
/*
movements.resize(5);
movements[0].pos_movement = Vector3d(7.0, -5.0, 1.0);
movements[0].tan_rotation = Eigen::AngleAxisd (M_PI/90.0, Vector3d(1.0, 0.0, 0.0));
movements[1].pos_movement = Vector3d(7.0, -4.0, 2.0);
movements[1].tan_rotation = Eigen::AngleAxisd (M_PI/100.0, Vector3d(1.0, 0.2, 0.0));
movements[2].pos_movement = Vector3d(6.0, -6.0, 3.0);
movements[2].tan_rotation = Eigen::AngleAxisd (M_PI/100.0, Vector3d(1.0, 0.0, 0.2));
movements[3].pos_movement = Vector3d(8.0, -4.0, 3.0);
movements[3].tan_rotation = Eigen::AngleAxisd (M_PI/80.0, Vector3d(1.0, 0.1, 0.1));
movements[4].pos_movement = Vector3d(6.0, -5.0, 2.0);
movements[4].tan_rotation = Eigen::AngleAxisd (M_PI/90.0, Vector3d(1.0, 0.1, -0.1));
intermediateThread.resize(0);
Thread* curr = new Thread(start);
Thread* next;
for (int i=0; i < movements.size(); i++)
{
next = movements[i].applyMotion(curr);
intermediateThread.push_back(next);
curr = next;
}
*/
}
void Thread_RRT::initializeSearch(RRT_Node& start, RRT_Node& goal)
{
currNodes.resize(0);
currNodes.push_back(new RRT_Node_And_Edge(start));
}
void Thread_RRT::getNextGoal(RRT_Node& goal, RRT_Node& goalThisIter)
{
//first, see if we are sampling randomly, or around goal
double randNum = ((double)rand()) / ((double)RAND_MAX);
if (randNum < RANDOM_SAMPLE_THRESH)
{
//goalThisIter.copyNode(goal);
//return;
setThisGoalNearGoal(goal, goalThisIter);
return;
}
//sample random goal
Matrix4d startTrans;
goal.thread->getStartTransform(startTrans);
Vector3d startPos = startTrans.corner(Eigen::TopRight,3,1);
Vector3d startTan = startTrans.corner(Eigen::TopLeft,3,1);
goalThisIter.thread = new Thread(goal.thread->length(), startPos, startTan);
goalThisIter.thread->minimize_energy();
goalThisIter.setPoints();
}
void Thread_RRT::setThisGoalNearGoal(RRT_Node& goal, RRT_Node& goalThisIter)
{
//sample something in sphere between current point and goal
//first, set the things we know
Matrix4d startTrans;
goal.thread->getStartTransform(startTrans);
Vector3d posNewThread[2];
Vector3d tanNewThread[2];
double lengthNewThread[2];
double length_thread = goal.thread->length();
lengthNewThread[0] = lengthNewThread[1] = length_thread/2.0;
posNewThread[0] = startTrans.corner(Eigen::TopRight,3,1);
tanNewThread[0] = startTrans.corner(Eigen::TopLeft,3,1);
Vector3d endPos;
goal.thread->getWantedEndPosition(endPos);
Vector3d endTan;
goal.thread->getWantedEndTangent(endTan);
//random params for initializing
double curvatureNewThread[2] = {randomNumUnit()*RANDOM_THREAD_MAX_CURVATURE_INIT, randomNumUnit()*RANDOM_THREAD_MAX_CURVATURE_INIT};
double torsionNewThread[2] = {randomNumUnit()*RANDOM_THREAD_MAX_TORSION_INIT, randomNumUnit()*RANDOM_THREAD_MAX_TORSION_INIT};
//find closest thread to goal
int indClosest;
findClosestNode(goal, indClosest);
Vector3d endPosClosestToGoal;
currNodes[indClosest]->this_node.thread->getWantedEndPosition(endPosClosestToGoal);
Vector3d endTanClosestToGoal;
currNodes[indClosest]->this_node.thread->getWantedEndTangent(endTanClosestToGoal);
//calculate the distance to this end
//sample from this radius, add to end point
double randX, randY, randZ, sampledRadius;
double radius_pos = (endPos - endPosClosestToGoal).norm() + ADD_TO_GOAL_DIST_RADIUS;
double dist_new_thread;
do
{
//find point in sphere with this radius, add to goal endpoint
//std::cout << "sampling end point" << std::endl;
double sampledRadius;
do
{
//std::cout << "sampling circle" << std::endl;
randX = randomMaxAbsValue(radius_pos);
randY = randomMaxAbsValue(radius_pos);
randZ = randomMaxAbsValue(radius_pos);
sampledRadius = randX*randX + randY*randY + randZ*randZ;
} while (sampledRadius >= (radius_pos*radius_pos));
posNewThread[1](0) = randX+endPos(0);
posNewThread[1](1) = randY+endPos(1);
posNewThread[1](2) = randZ+endPos(2);
dist_new_thread = (posNewThread[1]-posNewThread[0]).norm();
} while (dist_new_thread >= length_thread);
//sample from a tan around the goal tan
//sample from outside of sphere with radius equal to length between goal tan and closest tan
//normalize the length of that new tan
double radius_tan = (endTan - endTanClosestToGoal).norm() + ADD_TO_GOAL_TAN_RADIUS;
double randTheta = M_PI*randomNumUnit();
double randPhi = 2.0*M_PI*randomNumUnit();
tanNewThread[1](0) = endTan(0)+radius_tan*cos(randTheta)*sin(randPhi);
tanNewThread[1](1) = endTan(1)+radius_tan*sin(randTheta)*sin(randPhi);
tanNewThread[1](2) = endTan(2)+radius_tan*cos(randPhi);
tanNewThread[1].normalize();
// std::cout << "goal end pos: " << endPos << std::endl;
// std::cout << "goal end tan: " << endTan << std::endl;
// std::cout << "new end pos: " << posNewThread[1] << std::endl;
// std::cout << "new end tan: " << tanNewThread[1] << std::endl;
goalThisIter.thread = new Thread(goal.thread);
goalThisIter.thread->setEndConstraint(posNewThread[1], tanNewThread[1]);
goalThisIter.thread->upsampleAndOptimize_minLength(0.065);
goalThisIter.thread->minimize_energy();
//goalThisIter.thread = new Thread(curvatureNewThread, torsionNewThread, lengthNewThread, 2, posNewThread, tanNewThread);
//goalThisIter.thread = new Thread(length_thread, posNewThread[0], tanNewThread[0]);
//goalThisIter.thread->minimize_energy();
goalThisIter.setPoints();
double distToGoal = goal.distanceToNode(goalThisIter);
//std::cout << "distance to actual goal: " << distToGoal << std::endl;
}
double Thread_RRT::findClosestNode(RRT_Node& goalNode, int& ind_to_closest)
{
ind_to_closest = 0;
double dist = goalNode.distanceToNode(currNodes[0]->this_node);
for (int i=1; i < currNodes.size(); i++)
{
double thisDist = goalNode.distanceToNode(currNodes[i]->this_node);
if (thisDist < dist)
{
dist = thisDist;
ind_to_closest = i;
}
}
return dist;
}
void Thread_RRT::findThreadMotion(RRT_Node& start, RRT_Node& goal, Thread_Motion& bestMotion)
{
/*motion.pos_movement.setZero();
motion.tan_rotation.setIdentity();
double estimated_derivs[5];
Matrix4d startTrans;
start.thread->getStartTransform(startTrans);
for (int dir=0; dir < 3; dir++)
{
//move in direction
motion.pos_movement(dir) = DISTANCE_TO_TRY;
RRT_Node thisNodeToTry(motion.applyMotion(start.thread));
double pos_dir_dist = goal.distanceToNode(thisNodeToTry);
//move in other direction
motion.pos_movement(dir) = -DISTANCE_TO_TRY;
RRT_Node thisNodeToTryOtherDir(motion.applyMotion(start.thread));
double neg_dir_dist = goal.distanceToNode(thisNodeToTryOtherDir);
//double neg_dir_dist = goal.distanceToNode(start);
estimated_derivs[dir] = (pos_dir_dist-neg_dir_dist)/(2.0*DISTANCE_TO_TRY);
//cleanup for next iter
motion.pos_movement(dir) = 0.0;
}
std::cout << estimated_derivs[0] << " " << estimated_derivs[1] << " " << estimated_derivs[2] << std::endl;
motion.pos_movement = Vector3d(estimated_derivs[0]/100.0, estimated_derivs[1]/100.0, estimated_derivs[2]/100.0);
*/
/*
Matrix4d startTrans;
start.thread->getStartTransform(startTrans);
double bestScore = DBL_MAX;
Thread_Motion thisMotion;
for (int randSampleInd=0; randSampleInd < NUM_RANDOM_SAMPLES; randSampleInd++)
{
//random position movement
for (int i=0; i < 3; i++)
{
thisMotion.pos_movement(i) = (2.0*MAX_DISTANCE_MOVE_EACH_DIR*((double)rand()) / ((double)RAND_MAX))-MAX_DISTANCE_MOVE_EACH_DIR;
}
//random rotation matrix
double rotAng1 = (2.0*MAX_ANG_TO_ROTATE*((double)rand()) / ((double)RAND_MAX)) - MAX_ANG_TO_ROTATE;
double rotAng2 = (2.0*MAX_ANG_TO_ROTATE*((double)rand()) / ((double)RAND_MAX)) - MAX_ANG_TO_ROTATE;
thisMotion.setRotationMatrixFromAngs(rotAng1, rotAng2);
//std::cout << "pos: " << thisMotion.pos_movement << std::endl;
//std::cout << "tan: " << thisMotion.tan_rotation << std::endl;
RRT_Node thisMotionTried(thisMotion.applyMotion(start.thread));
double thisScore = goal.distanceToNode(thisMotionTried);
if (thisScore < bestScore)
{
bestScore = thisScore;
bestMotion = thisMotion;
}
}
*/
//find vector to get position closer
Vector3d startEnd;
start.thread->getWantedEndPosition(startEnd);
Vector3d goalEnd;
goal.thread->getWantedEndPosition(goalEnd);
bestMotion.pos_movement = goalEnd - startEnd;
//add some noise to movement
bestMotion.pos_movement(0) += randomMaxAbsValue(MAX_NOISE_DISTANCE_MOVEMENT);
bestMotion.pos_movement(1) += randomMaxAbsValue(MAX_NOISE_DISTANCE_MOVEMENT);
bestMotion.pos_movement(2) += randomMaxAbsValue(MAX_NOISE_DISTANCE_MOVEMENT);
//make sure vector isn't too long (that's what she said)
double normOfVec = bestMotion.pos_movement.norm();
if (normOfVec > MAX_DISTANCE_MOVEMENT)
{
bestMotion.pos_movement *= (MAX_DISTANCE_MOVEMENT/normOfVec);
}
//rotate towards other tan
Vector3d startTan;
start.thread->getWantedEndTangent(startTan);
Vector3d goalTan;
goal.thread->getWantedEndTangent(goalTan);
Vector3d vecToRotateAbout = startTan.cross(goalTan);
vecToRotateAbout.normalize();
//add noise to tan
vecToRotateAbout(0) += randomMaxAbsValue(MAX_NOISE_ROTATION_VECTOR);
vecToRotateAbout(1) += randomMaxAbsValue(MAX_NOISE_ROTATION_VECTOR);
vecToRotateAbout(2) += randomMaxAbsValue(MAX_NOISE_ROTATION_VECTOR);
vecToRotateAbout.normalize();
double angToRotate = min(MAX_ANG_TO_ROTATE, acos(startTan.dot(goalTan)));
angToRotate += randomMaxAbsValue(MAX_NOISE_ROTATION_ANGLE);
bestMotion.tan_rotation = Eigen::AngleAxisd( angToRotate, vecToRotateAbout);
//motion.pos_movement = Vector3d(4.0, -3.5, 1.0);
//motion.tan_rotation = Eigen::AngleAxisd (0.0, Vector3d(1.0, 0.0, 0.0));
}
void Thread_RRT::cleanup()
{
for (int i=0; i < currNodes.size(); i++)
{
delete currNodes[i];
}
currNodes.resize(0);
}
/****************************************************************************
******************************* RRT_Node ***********************************
****************************************************************************/
RRT_Node::RRT_Node(const Thread* threadIn) :
thread(new Thread(threadIn))
{
setPoints();
}
RRT_Node::RRT_Node(const RRT_Node& nodeToCopy) :
points(nodeToCopy.points)
{
if (nodeToCopy.thread != NULL)
thread = new Thread(nodeToCopy.thread);
else
thread = NULL;
}
RRT_Node::~RRT_Node()
{
if (thread != NULL)
delete thread;
}
void RRT_Node::setPoints()
{
//points = MatrixXd::Zero(NUM_PTS_PER_NODE, 3);
points.resize(NUM_PTS_PER_NODE,3);
thread->getPoints(points);
}
void RRT_Node::copyNode(const RRT_Node& toCopy)
{
if (thread != NULL)
delete thread;
thread = new Thread(toCopy.thread);
points = toCopy.points;
}
double RRT_Node::distanceToPoints(MatrixXd& otherPoints)
{
return avgDistBetweenPoints(points, otherPoints);
}
double RRT_Node::distanceToNode(RRT_Node& otherNode)
{
return avgDistBetweenPoints(points, otherNode.points);
//return distanceToPoints(otherNode.points);
}
void RRT_Node::applyMotion(RRT_Node& end, Thread_Motion& motion)
{
end.thread = motion.applyMotion(thread);
end.setPoints();
}
RRT_Node& RRT_Node::operator=(const RRT_Node& rhs)
{
copyNode(rhs);
}
/****************************************************************************
**************************** RRT_Node_And_Edge *****************************
****************************************************************************/
RRT_Node_And_Edge::~RRT_Node_And_Edge()
{
if (motion_from_last != NULL)
delete motion_from_last;
}
RRT_Node_And_Edge& RRT_Node_And_Edge::operator=(const RRT_Node_And_Edge& rhs)
{
this_node = rhs.this_node;
last_node = rhs.last_node;
motion_from_last = rhs.motion_from_last;
}
|
62bed8c226e58ce09715e739ed5425f5af41f816 | ee20b7692d345474b647bfd89ce017582f734026 | /Test_polinom/gtesst.h | 2664c92ffc5b598b028111d667743443cf01652f | [] | no_license | MBarysheva/mp2-lab5-polinom | 7f7a271d70f0c54bb18ecc3a8f3ade508a5efd9b | ad1428d7497e7127fa0da1906a13664cf72d288c | refs/heads/main | 2023-04-24T08:59:49.611717 | 2021-04-26T14:29:06 | 2021-04-26T14:29:06 | 340,631,693 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,788 | h | gtesst.h | #pragma once
#include<iostream>
#include <string>
using namespace std;
template <class T>
struct TLink
{
T val;
TLink* pNext;
};
struct TMonom
{
double coeff;
int x, y, z;
TMonom(int x_ = 0, int y_ = 0, int z_ = 0, double coeff_ = 1.0);
bool operator < (const TMonom& m)const;
bool operator == (const TMonom& m)const;
bool operator >(const TMonom& m)const;
TMonom& operator =(const TMonom& m);
TMonom operator *(const TMonom& m);
TMonom operator *(const double alpha);
friend istream& operator>>(istream& in, TMonom& m)
{
string res;
in >> res;
bool flag = false;
for (unsigned int i = 0; i < res.size(); i++)
{
if (res[i] == 'x' || res[i] == 'y' || res[i] == 'z')
{
flag = true;
}
if (flag)
{
if (i + 1 < res.size())
{
if (res[i + 1] == '^')
{
m.input(res[i], res[i + 2] - '0');
i += 2;
}
else
m.input(res[i], 1);
}
else
m.input(res[i], 1);
}
else
if (i == 0)
{
string tmp;
unsigned int j;
for (j = 0; j < res.size(); j++)
{
if (res[j] == 'x' || res[j] == 'y' || res[j] == 'z')
break;
tmp += res[j];
}
i = j - 1;
if (tmp == "-")
m.coeff = -1;
else
m.coeff = std::stod(tmp);
}
}
return in;
}
friend std::ostream& operator << (std::ostream& out, const TMonom& m)
{
if (m.x + m.y + m.z)
{
if (m.coeff != 1.0)
{
if (m.coeff != -1.0)
out << m.coeff;
else
out << '-';
}
if (m.coeff != 1.0 && m.coeff != -1.0 && m.x)
out << '*';
out << m.print('x', m.x);
if (m.x && m.y)
out << '*';
out << m.print('y', m.y);
if (m.x && m.y && m.z)
out << '*';
out << m.print('z', m.z);
}
else
out << m.coeff;
return out;
}
string print(char p, int pow) const;
void input(char p, int val);
};
TMonom::TMonom(int x_, int y_, int z_, double coeff_)
{
x = x_;
y = y_;
z = z_;
coeff = coeff_;
}
void TMonom::input(char p, int val)
{
switch (p)
{
case 'x':x = val;
break;
case'y':y = val;
break;
case'z':z = val;
break;
}
}
std::string TMonom::print(char p, int pow) const
{
std::string res = "";
if (pow != 0)
{
if (pow > 1)
{
res += p;
res += '^';
res += std::to_string(pow);
}
else
{
res += p;
}
}
return res;
}
bool TMonom::operator <(const TMonom& m) const
{
int sum = x + y + z;
int sum_m = m.x + m.y + m.z;
return sum < sum_m;
}
bool TMonom::operator >(const TMonom& m) const
{
int sum = x + y + z;
int sum_m = m.x + m.y + m.z;
return sum > sum_m;
}
bool TMonom::operator == (const TMonom& m) const
{
return x == m.x && y == m.y && z == m.z;
}
TMonom& TMonom::operator =(const TMonom& m)
{
coeff = m.coeff;
x = m.x;
y = m.y;
z = m.z;
return *this;
}
TMonom TMonom:: operator *(const TMonom& m)
{
TMonom res;
res.x = x + m.x;
res.y = y + m.y;
res.z = z + m.z;;
res.coeff = coeff * m.coeff;
return res;
}
TMonom TMonom:: operator *(const double a)
{
TMonom res(this->x, this->y, this->z, this->coeff);
res.coeff *= a;
return res;
}
template <class T>
class TList
{
protected:
TLink<T>* pFirst, * pLast, * pCurr, * pPrev, * pStop;
int size, pos;
public:
TList()
{
size = 0;
pos = 0;
pStop = NULL;
pFirst = pStop;
pLast = pStop;
pCurr = pStop;
pPrev = pStop;
}
~TList()
{
pCurr = pPrev = pStop;
size = 0;
pos = 0;
while (pFirst != pStop)
{
TLink<T>* tmp = pFirst;
pFirst = pFirst->pNext;
delete tmp;
}
}
TList(const TList<T>& list);
void InsLast(T elem);
void InsFirst(T elem);
void InsCurr(T elem);
void DelCurr();
void DelFirst();
T GetCurr();
bool Empty();
void Reset()
{
pCurr = pFirst;
}
bool IsEnd() const
{
return pCurr == pStop;
}
void GoNext()
{
pPrev = pCurr;
pCurr = pCurr->pNext;
}
int Get_Size()const
{
return size;
}
friend ostream& operator<< (ostream& out, const TList<T>& s)
{
TLink<T>* tmp = s.pFirst;
while (tmp != s.pStop)
{
out << tmp->val << ' ';
tmp = tmp->pNext;
}
out << endl;
return out;
}
friend istream& operator >> (std::istream& in, TList<T>& list)
{
cout << "size=";
int t;
in >> t;
if (t < 0)
throw 0;
for (int i = 0; i < t; i++)
{
T tmp;
in >> tmp;
list.InsLast(tmp);
}
return in;
}
};
template <class T>
bool TList<T>::Empty()
{
if (pStop == pFirst)
return true;
return false;
}
template <class T>
T TList<T>::GetCurr()
{
if (Empty())
throw 0;
if (pCurr = pStop)
throw 0;
pCurr = pFirst->pNext;
pPrev = pCurr;
for (int i = 0; i < pos; i++)
{
pPrev = pCurr;
pCurr = pCurr->pNext;
}
return pCurr->val;
}
template <class T>
TList<T>::TList(const TList<T>& list)
{
if (list.size == 0)
{
pStop = list.pStop;
pFirst = pLast = pCurr = pPrev = pStop;
size = 0;
pos = 0;
}
else
{
pStop = list.pStop;
pCurr = pPrev = pStop;
pos = 0;
TLink<T>* prev = new TLink<T>;
prev->val = list.pFirst->val;
prev->pNext = pStop;
pFirst = prev;
TLink<T>* curr = list.pFirst;
while (curr->pNext != pStop)
{
curr = curr->pNext;
TLink<T>* link = new TLink<T>;
link->val = curr->val;
link->pNext = pStop;
prev->pNext = link;
prev = link;
}
size = list.size;
pLast = prev;
}
}
template<class T>
void TList<T>::InsFirst(T elem)
{
TLink<T>* tmp = new TLink<T>;
tmp->val = elem;
if (size == 0)
{
tmp->pNext = pStop;
pFirst = pLast = tmp;
}
else
{
tmp->pNext = pFirst;
pFirst = tmp;
}
size++;
}
template<class T>
void TList<T>::InsLast(T elem)
{
TLink<T>* tmp = new TLink<T>;
tmp->val = elem;
tmp->pNext = pStop;
if (size == 0)
{
pFirst = pLast = tmp;
}
else
{
pLast->pNext = tmp;
pLast = tmp;
}
size++;
}
template<class T>
void TList<T>::DelFirst()
{
if (size == 0)
throw 0;
else
{
TLink<T>* t = pFirst->pNext;
delete pFirst;
pFirst = t;
size--;
}
}
template <class T>
void TList<T>::DelCurr()
{
if (size == 0 || pCurr == pStop)
throw 0;
if (pCurr == pFirst)
{
DelFirst();
pCurr = pFirst;
}
else
{
pPrev->pNext = pCurr->pNext;
delete pCurr;
pCurr = pPrev->pNext;
size--;
}
}
template<class T>
void TList<T>::InsCurr(T elem)
{
if (size == 0)
{
InsLast(elem);
pPrev = pLast;
pCurr = pPrev->pNext;
}
else
{
if (pCurr == pFirst)
{
InsFirst(elem);
pPrev = pFirst;
pCurr = pPrev->pNext;
}
else
{
TLink<T>* t = new TLink<T>;
pPrev->pNext = t;
t->val = elem;
t->pNext = pCurr;
pPrev = t;
size++;
}
}
}
template<class T>
class THeadList : public TList<T> {
protected:
TLink<T>* pHead;
public:
THeadList();
THeadList(const THeadList& h);
~THeadList();
void InsFirst(T elem);
void DelFirst();
void InsLast(T elem);
void InsCurr(T elem);
void DelCurr();
};
template<class T>
THeadList<T>::THeadList() :TList<T>()
{
pHead = new TLink<T>;
TList<T>::pStop = pHead;
pHead->pNext = TList<T>::pStop;
TList<T>::pFirst = TList<T>::pLast = TList<T>::pCurr = TList<T>::pPrev = TList<T>::pStop;
}
template<class T>
THeadList<T>::THeadList(const THeadList<T>& h)
{
pHead = new TLink<T>;
TList<T>::pStop = TList<T>::pFirst = TList<T>::pLast = TList<T>::pPrev = TList<T>::pCurr = pHead;
pHead->pNext = TList<T>::pStop;
if (h.size)
{
TLink<T>* prev = new TLink<T>;
pHead->pNext = prev;
TList<T>::pFirst = prev;
TList<T>::pFirst->val = h.pFirst->val;
TList<T>::pFirst->pNext = TList<T>::pStop;
TLink<T>* curr = h.pFirst->pNext;
while (curr != h.pStop)
{
TLink<T>* t = new TLink<T>;
t->val = curr->val;
t->pNext = TList<T>::pStop;
prev->pNext = t;
prev = t;
curr = curr->pNext;
}
TList<T>::pLast = prev;
}
TList<T>::size = h.size;
TList<T>::pos = 0;
}
template<class T>
THeadList<T>::~THeadList()
{
TList<T>::~TList();
delete pHead;
}
template<class T>
void THeadList<T>::InsFirst(T elem)
{
TList<T>::InsFirst(elem);
pHead->pNext = TList<T>::pFirst;
}
template <class T>
void THeadList<T>::DelFirst()
{
TList<T>::DelFirst();
pHead->pNext = TList<T>::pFirst;
}
template<class T>
void THeadList<T>::InsLast(T elem)
{
TList<T>::InsLast(elem);
pHead->pNext = TList<T>::pFirst;
}
template<class T>
void THeadList<T>::InsCurr(T elem)
{
TList<T>::InsCurr(elem);
pHead->pNext = TList<T>::pFirst;
}
template <class T>
void THeadList<T>::DelCurr()
{
TList<T>::DelCurr();
pHead->pNext = TList<T>::pFirst;
}
class TPolinom :public THeadList<TMonom> {
public:
TPolinom();
TPolinom(const TPolinom& p);
void InsMonom(const TMonom& m);
TPolinom& operator=(const TPolinom& p);
TPolinom& operator += (const TPolinom& p);
TPolinom operator + (const TPolinom& p);
TPolinom operator * (const double val);
TPolinom operator * (const TMonom& m);
//TPolinom& operator *=(const TPolinom& p);
//TPolinom operator * (const TPolinom& p);
friend istream& operator >> (istream& in, TPolinom& p)
{
std::cout << "size=";
int t;
in >> t;
if (t < 0)
throw 0;
for (int i = 0; i < t; i++)
{
TMonom m;
in >> m;
p.InsMonom(m);
}
return in;
}
friend ostream& operator << (ostream& out, TPolinom& p)
{
for (p.Reset(); !p.IsEnd(); p.GoNext())
{
out << p.pCurr->val << ' ';
}
if (!p.size)
out << "Polinom empty";
return out;
}
};
TPolinom::TPolinom() :THeadList<TMonom>()
{
TMonom tmp;
tmp.z = -1;
tmp.coeff = 0.0;
pHead->val = tmp;
}
TPolinom::TPolinom(const TPolinom& p) : THeadList<TMonom>(p)
{
pHead->val = p.pHead->val;
}
void TPolinom::InsMonom(const TMonom& m)
{
Reset();
while (true)
{
if (pCurr->val < m)
{
InsCurr(m);
break;
}
if (pCurr->val == m)
{
if (pCurr->val.coeff + m.coeff != 0)
pCurr->val.coeff += m.coeff;
else
DelCurr();
break;
}
GoNext();
}
}
TPolinom& TPolinom::operator+=(const TPolinom& p)
{
Reset();
TLink<TMonom>* curr = p.pFirst;
while (curr != p.pStop)
{
if (pCurr->val < curr->val)
{
InsCurr(curr->val);
curr = curr->pNext;
}
else
{
if (pCurr->val == curr->val)
{
double tmp = pCurr->val.coeff + curr->val.coeff;
pCurr->val.coeff = tmp;
if (tmp)
GoNext();
else
DelCurr();
curr = curr->pNext;
}
else
GoNext();
}
}
return *this;
}
TPolinom TPolinom::operator + (const TPolinom& p)
{
TPolinom res(*this);
res.Reset();
TLink<TMonom>* curr = p.pFirst;
while (curr != p.pStop)
{
if (res.pCurr->val < curr->val)
{
res.InsCurr(curr->val);
curr = curr->pNext;
}
else
{
if (res.pCurr->val == curr->val)
{
double tmp = res.pCurr->val.coeff + curr->val.coeff;
if (tmp)
{
res.pCurr->val.coeff = tmp;
res.GoNext();
}
else
res.DelCurr();
curr = curr->pNext;
}
else
{
res.GoNext();
}
}
}
return res;
}
TPolinom TPolinom:: operator*(const double val)
{
if (val == 0.0)
{
TPolinom res;
return res;
}
else
{
TPolinom res(*this);
for (res.Reset(); !res.IsEnd(); res.GoNext())
res.pCurr->val.coeff *= val;
return res;
}
}
TPolinom TPolinom::operator*(const TMonom& m)
{
if (m.coeff == 0.0)
{
TPolinom res;
return res;
}
else
{
TPolinom res(*this);
for (res.Reset(); !res.IsEnd(); res.GoNext())
res.pCurr->val = res.pCurr->val * m;
return res;
}
}
/*TPolinom& TPolinom:: operator *=(const TPolinom& p)
{
TPolinom this_(*this);
TList<TMonom>::~TList();
for (this_.Reset(); !this_.IsEnd(); this_.GoNext())
{
TLink<TMonom>* curr = p.pFirst;
TPolinom tmp;
while (curr != p.pStop)
{
tmp.InsLast(this_.pCurr->val * curr->val);
curr = curr->pNext;
}
*this += tmp;
}
return *this;
}
TPolinom TPolinom:: operator *(const TPolinom& p)
{
TPolinom res;
if (p.size)
{
for (Reset(); !IsEnd(); GoNext())
{
TLink<TMonom>* curr = p.pFirst;
TPolinom tmp;
while (curr != p.pStop)
{
tmp.InsLast(pCurr->val * curr->val);
curr = curr->pNext;
}
res += tmp;
}
}
return res;
}*/
TPolinom& TPolinom:: operator=(const TPolinom& p)
{
if (this != &p)
{
if (!p.size)
{
TList<TMonom>::~TList();
}
else
{
if (size < p.size)
{
int tmp = p.size - size;
TLink<TMonom>* curr = pLast;
for (int i = 0; i < tmp; i++)
{
TLink<TMonom>* new_elem = new TLink<TMonom>;
curr->pNext = new_elem;
curr = new_elem;
curr->pNext = pStop;
}
pFirst = pHead->pNext;
pLast = curr;
curr = p.pFirst;
for (Reset(); !IsEnd(); GoNext())
{
pCurr->val = curr->val;
curr = curr->pNext;
}
}
else
{
TLink<TMonom>* curr = p.pFirst;
Reset();
while (true)
{
pCurr->val = curr->val;
curr = curr->pNext;
if (curr == p.pStop)
break;
GoNext();
}
pLast = pCurr;
GoNext();
while (!IsEnd())
{
TLink<TMonom>* t = pCurr;
GoNext();
delete t;
}
pLast->pNext = pStop;
pPrev = pLast;
}
}
}
size = p.size;
pos = 0;
return *this;
}
|
95bef12a0588e25ab769b40d1d19a6f087b3be8f | e36982e153d30a5a63642af4b407b127423f9521 | /Src/Plugins/org.vci.projectmanager/ProjectManager/NewPrjPage.h | aacfcb8c7801005de3836d79f107b6e86d876b18 | [
"MIT"
] | permissive | ZnWen/Script.NET | 23f9bc5eca42f4d5ea9f3dca578bc9bee9e4fc8b | 6214e00371b3c983ec68e0660b0c708a6d8b81e8 | refs/heads/master | 2023-03-21T10:05:01.210422 | 2017-09-25T15:11:15 | 2017-09-25T15:11:15 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,189 | h | NewPrjPage.h | #if !defined(AFX_NEWPRJPAGE_H__B99FAEF7_24EC_40DF_88E5_3E099C2F5D55__INCLUDED_)
#define AFX_NEWPRJPAGE_H__B99FAEF7_24EC_40DF_88E5_3E099C2F5D55__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// NewPrjPage.h : header file
//
#include "kcsidebannerwnd.h"
/////////////////////////////////////////////////////////////////////////////
// CNewPrjPage dialog
class CNewPrjPage : public CDialog
{
//DECLARE_DYNCREATE(CNewPrjPage)
// Construction
public:
CNewPrjPage(CWnd* pParent = NULL);
~CNewPrjPage();
// Dialog Data
//{{AFX_DATA(CNewPrjPage)
enum { IDD = IDD_NEW_PROJECT };
CListBox m_listPrjType;
CString m_strPrjName;
CString m_strPrjDesc;
CString m_strAuthor;
CString m_strPrjPath;
//}}AFX_DATA
CKCSideBannerWnd m_banner;
int m_nPrjType; // 工程类型
CString m_strPrjType; // 工程类型
CString m_strPrjVci; // 工程组件名
CString m_strPrjExt; // 工程组件名
CString m_strTemplate; // 模板文件或目录
CString m_strInterp; // 解释器
CString m_strScript; // 执行的脚本
CUIntArray m_auIcon; // 图标列表
CStringArray m_asIcon; // 图标列表(图标文件名)
CStringArray m_asTemplate; // 模板列表
CStringArray m_asType; // 工程类型列表
CStringArray m_asPrjVci; // 工程VCI组件名列表
CStringArray m_asExt; // 工程文件后缀列表
CStringArray m_asInterp; // 脚本解释器列表
CStringArray m_asScript; // 脚本列表(选定一种工程之后执行的脚本)
// Overrides
// ClassWizard generate virtual function overrides
//{{AFX_VIRTUAL(CNewPrjPage)
public:
virtual void OnOK();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
// Generated message map functions
//{{AFX_MSG(CNewPrjPage)
virtual BOOL OnInitDialog();
afx_msg void OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDIS);
afx_msg void OnButtonPrjpath();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_NEWPRJPAGE_H__B99FAEF7_24EC_40DF_88E5_3E099C2F5D55__INCLUDED_)
|
3b2ca67982748e819129526be98486608c5307be | fd4f589282f1d514ddd0cf469b3dea9903aca237 | /9.IsSubsequence.cpp | 812ea0d956a1c1f2ae13da12786e1fed3aee5d4a | [] | no_license | iupriser/JuneLeetCodingChallengeCPP | 00824b06e27ede0833476437c3b3e1b6b54b4bcd | 4174d7c2242dc02063ccbe9863c0fdc5b509fb86 | refs/heads/master | 2022-11-21T09:25:03.002784 | 2020-07-01T07:54:22 | 2020-07-01T07:54:22 | 269,863,223 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,084 | cpp | 9.IsSubsequence.cpp | class Solution {
public:
bool isSubsequence(string s, string t) {
if(!s.size()) {
return true;
}
int index = 0;
for(int i =0; i< t.size(); ++i){
if(t[i] == s[index]){
index++;
}
if(index >= s.size()){
return true;
}
}
return false;
}
};
//follow-UP
// class Solution {
// public:
// bool isSubsequence(string s, string t) {
// unordered_map<char, vector<int>> hash; //chars -> list of indices;
// for(int i=0; i<t.length();i++) hash[t[i]].push_back(i);
// int prev = -1;
// for(auto c : s){
// auto it = hash.find(c);
// if(it == hash.end()) return false;
// auto vec = it->second;
// int pos = upper_bound(vec.begin(), vec.end(), prev) - vec.begin(); // find the first pos whose value is greater than prev
// if(pos == vec.size()) return false;
// prev = vec[pos];
// }
// return true;
// }
// }; |
d5869c948bb55b46f306f219dd48d8d5f6dc8b46 | a9158651d4729854ec5b3f6a9da1a88e6599506f | /src/Graphique/MiniProjet/FenetreGL.cc | ab0eba4f9b49e90f478f1e2135be86bdd49d64aa | [] | no_license | Omegagoth/ProjectKaf | a758b57cd808dcd0becaa2eb9bef87a108946b37 | 81f9d9b47226f647d7cb0fc9847ccb57cf0b1c80 | refs/heads/master | 2021-01-11T03:42:51.632508 | 2016-10-04T16:13:33 | 2016-10-04T16:13:33 | 69,978,896 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 425 | cc | FenetreGL.cc | #include "FenetreGL.h"
FenetreGL::FenetreGL(wxString titre, wxSize taille)
: wxFrame(0, wxID_ANY, titre, wxDefaultPosition, taille, wxDEFAULT_FRAME_STYLE & ~ (wxRESIZE_BORDER | wxMAXIMIZE_BOX)),
vueopengl (new VueOpenGL(this))
{
//On centre la fenêtre sur l'écran
Center();
//Et on l'affiche
Show(true);
vueopengl->InitOpenGL();
}
void FenetreGL::rafraichir()
{
vueopengl->Refresh(false);
}
|
3ddd95a161e59264c96d01f2b458e5150d7847a9 | 164ad25eca017ebc51ae72d46dd1f19f722c0c21 | /include/Model/GraphLayoutDAO.h | ef658859bc9a11556880872f92c2c3d7d588e23d | [] | no_license | jaro-prokop/3dsoftviz | 5cdcaa15158acdb335a441073ca2d26e1cd5b46d | 77332ef847529a8617247754c94621ebc6a90d2c | refs/heads/master | 2021-01-16T20:23:24.894745 | 2011-05-02T09:00:39 | 2011-05-02T09:00:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,181 | h | GraphLayoutDAO.h | /*!
* GraphLayoutDAO.h
* Projekt 3DVisual
*/
#ifndef MODEL_GRAPHLAYOUTDAO_DEF
#define MODEL_GRAPHLAYOUTDAO_DEF 1
#include "Data/GraphLayout.h"
#include "Data/Graph.h"
#include <QString>
#include <QMap>
#include <QtSql>
#include <QDebug>
namespace Data
{
class GraphLayout;
}
namespace Model
{
/**
* \class GraphLayoutDAO
* \brief Class represents a database layer for Data::GraphLayout objects
* \author Aurel Paulovic
* \date 29. 4. 2010
*/
class GraphLayoutDAO
{
public:
/**
* \fn public static getLayouts(Data::Graph* graph, QSqlDatabase* conn, bool* error)
* \brief Returns QMap of GraphLayotus assigned to the Graph in the database
* \param graph Graph
* \param conn connection to the database
* \param error error flag, will be set to true, if the method encounters an error
* \return QMap<qlonglong,Data::GraphLayout*> GraphLayouts of the Graph
*/
static QMap<qlonglong, Data::GraphLayout*> getLayouts(Data::Graph* graph, QSqlDatabase* conn, bool* error);
/**
* \fn public static overloaded addLayout(QString layout_name, Data::Graph* graph, QSqlDatabase* conn)
* \brief Creates new GraphLayout, assigns it to the Graph and adds it into the database
* \param layout_name name of the GraphLayout
* \param graph Graph
* \param conn connection to the database
* \return Data::GraphLayout * new GraphLayout
*/
static Data::GraphLayout* addLayout(QString layout_name, Data::Graph* graph, QSqlDatabase* conn);
/**
* \fn public static overloaded addLayout(Data::GraphLayout* layout, QSqlDatabase* conn)
* \brief Adds GraphLayout to the database
* \param layout Data::GraphLayout * GraphLayout
* \param conn QSqlDatabase * connection to the database
* \return bool true, if the GraphLayaout was added to the database
*/
static bool addLayout(Data::GraphLayout* layout, QSqlDatabase* conn);
/**
* \fn public static removeLayout(Data::GraphLayout* graphLayout, QSqlDatabase* conn)
* \brief Removes Graphlayout from the databse
* \param graphLayout GraphLayout
* \param conn connection to the database
* \return bool true, if the GraphLayout was successfully removed from the database
*/
static bool removeLayout(Data::GraphLayout* graphLayout, QSqlDatabase* conn);
/**
* \fn public static setName(QString name, Data::GraphLayout* graphLayout, QSqlDatabase* conn)
* \brief Sets new name to the GraphLayout in database
* \param name new name
* \param graphLayout GraphLayout
* \param conn connection to the database
* \return QString resultant name of the GraphLayout
*/
static QString setName(QString name, Data::GraphLayout* graphLayout, QSqlDatabase* conn);
/**
* \fn public static checkIfExists(Data::GraphLayout* graphLayout, QSqlDatabase* conn)
* \brief Checks if the GraphLayout is in database
* \param graphLayout GraphLayout
* \param conn connection to the database
* \return bool true, if the GraphLayout is in database
*/
static bool checkIfExists(Data::GraphLayout* graphLayout, QSqlDatabase* conn);
/**
* \fn public static getSettings(Data::GraphLayout* graphLayout, QSqlDatabase* conn, bool* error)
* \brief Returns setting of the GraphLayout
* \param graph GraphLayout
* \param conn connection to the database
* \param error error flag, will be set to true, if the method encounters an error
* \return QMap<QString,QString> settings of the GraphLayout
*/
static QMap<QString,QString> getSettings(Data::GraphLayout* graphLayout, QSqlDatabase* conn, bool* error);
private:
/**
* \fn private constructor GraphLayoutDAO
* \brief Constructs GraphLayoutDAO object
*
* Only static members of the class should be used
*/
GraphLayoutDAO(void);
/**
* \fn private destructor ~GraphLayoutDAO
* \brief Destroys GraphLayoutDAO object
*/
~GraphLayoutDAO(void);
};
}
#endif
|
c7bb1403ebc534ac2d53f32fab4041e7137e78c9 | d89a6a86fa406f757f04200f2c2ea3e88a178a32 | /Game/src/Library/SimpleLib/Helper.h | 1a81352faeea45b8309d313988f1700b07ba7f42 | [] | no_license | OogakiAkiya/AimHigherGoal | 58ab6d292f0abace9eef8e110102b825564d8b0d | 8f51d10feb5759f7be089e0316242b35213e3d3f | refs/heads/master | 2020-04-06T21:04:52.696434 | 2019-01-10T11:17:09 | 2019-01-10T11:17:09 | 157,791,876 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 4,625 | h | Helper.h | //==========================================================================================================
//
// Helper.h
//
// 制作者:鎌田
//
//==========================================================================================================
#ifndef Helper_h
#define Helper_h
//=================================================================
//
// あると便利なマクロや関数
//
//=================================================================
#pragma warning(disable:4996)
#include <string>
namespace SimpleLib{
// 度 -> ラジアン 変換
#define ToRadian(x) ((x)*0.017453f)
// ラジアン -> 度 変換
#define ToDegree(x) ((x)*57.3f)
// 安全なポインタの解放 ※本当はdefineでなく、テンプレート関数などにしたほうが良い
#define SAFE_FREE(p) {if(p){free(p);p=nullptr;}} // mallocしたものを安全にfreeするマクロ
#define SAFE_RELEASE(p) {if(p){p->Release();p=nullptr;}} // COMオブジェクト系を安全にReleaseするマクロ
#define SAFE_DELETE(p) {if(p){delete p;p=nullptr;}} // newされた変数を安全に解放するマクロ
#define SAFE_DELETE_ARRAY(p){if(p){delete[] p;p=nullptr;}} // newされた配列を安全に解放するマクロ
// 色関係の短縮名用
#define XRGB(r,g,b) D3DCOLOR_XRGB(r,g,b)
#define ARGB(a,r,g,b) D3DCOLOR_ARGB(a,r,g,b)
#define RGBA(r,g,b,a) D3DCOLOR_RGBA(r,g,b,a)
#define COLORVALUE(a,r,g,b) D3DCOLOR_COLORVALUE(r,g,b,a)
//======================================================
// スマートポインタ短縮名用
//======================================================
#define SPtr std::shared_ptr
#define UPtr std::unique_ptr
//======================================================
// FPS計測
//======================================================
DWORD FpsProc();
//======================================================
// ログ出力
//======================================================
void AddLogFile(char *LogFileName,char *str, bool bData=false);
//=================================================================
// 可変引数メッセージボックス
//=================================================================
inline void DispMsg(HWND hWnd,char *format, ...)
{
char str[1024];
va_list argptr;
va_start(argptr, format);
vsprintf(str,format, argptr);
va_end(argptr);
MessageBox(hWnd,str,"Message",MB_OK);
}
//======================================================
// キー判定(1回押し)
//======================================================
bool KeyCheck(int keyCode);
//======================================================
// ファイル名と拡張子の間に、指定文字列を挿入した文字列を生成
//======================================================
inline std::string ConvertExtFileName(const std::string& FileName, const std::string& ext)
{
std::string extName = FileName;
int pos = extName.find_last_of(".");
if (pos == -1)return "";
std::string tmp = ".";
tmp += ext;
extName.insert(pos, tmp);
return extName;
}
//======================================================
// 現在のレンダーターゲットを取得し、あとで戻す便利クラス
//======================================================
class RT_BackUpper {
public:
// コンストラクタ
// 現在のRTの情報を取得し、憶えておく
RT_BackUpper(LPDIRECT3DDEVICE9 lpD3DDev, int rt_Index) {
m_rt_Index = rt_Index;
lpD3DDev->GetRenderTarget(rt_Index, &m_rt); // RT取得
}
// デストラクタ
// 憶えておいたRTをセットしなおす
~RT_BackUpper() {
if (m_rt) {
LPDIRECT3DDEVICE9 lpD3DDev;
m_rt->GetDevice(&lpD3DDev);
lpD3DDev->SetRenderTarget(m_rt_Index, m_rt);
SAFE_RELEASE(m_rt);
SAFE_RELEASE(lpD3DDev);
}
}
void Restore() {
}
private:
int m_rt_Index = 0;
LPDIRECT3DSURFACE9 m_rt = nullptr;
};
//======================================================
// 現在のZバッファを取得し、あとで戻す便利クラス
//======================================================
class ZBuffer_BackUpper {
public:
// コンストラクタ
// 現在のRTの情報を取得し、憶えておく
ZBuffer_BackUpper(LPDIRECT3DDEVICE9 lpD3DDev) {
lpD3DDev->GetDepthStencilSurface(&m_z); // RT取得
}
// デストラクタ
// 憶えておいたRTをセットしなおす
~ZBuffer_BackUpper() {
if (m_z) {
LPDIRECT3DDEVICE9 lpD3DDev;
m_z->GetDevice(&lpD3DDev);
lpD3DDev->SetDepthStencilSurface(m_z);
SAFE_RELEASE(m_z);
SAFE_RELEASE(lpD3DDev);
}
}
private:
LPDIRECT3DSURFACE9 m_z = nullptr;
};
}
#endif
|
a9d5a3336161a777ea986d103509b343d137d8aa | ca0d4751283e3c33455359cb8a8eed92cda69509 | /src/lexer.cpp | 222cab54c299260882510f9422ad8a84239ab13f | [
"MIT"
] | permissive | liwangqian/cpplua | 3910e775a742ef61ebf1cc4bbd7adafff59eef93 | f9b3486918c7c472e0c60d283f6a1eac164c6af1 | refs/heads/master | 2021-07-20T18:19:56.649267 | 2021-01-29T18:00:55 | 2021-01-29T18:00:55 | 234,737,610 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 10,276 | cpp | lexer.cpp | #include "lexer.h"
#include "keyword.h"
#include <cassert>
CPPLUA_NS_BEGIN
namespace __detail {
inline bool is_whitespace(char c)
{
return c == ' ' || c == '\t';
}
inline bool is_eol(char c)
{
return c == '\r' || c == '\n';
}
inline bool is_word_start(char c)
{
return isalpha(c) || c == '_';
}
inline bool is_word_part(char c)
{
return isalnum(c) || c == '_';
}
inline bool is_hex_digit(char c)
{
return isdigit(c) || (c >= 97 && c <= 102) || (c >= 65 && c <= 70);
}
lexer::lexer(feature_t features, const char *input, uint32_t len)
: m_input{input}, m_length{len}, m_index{0}, m_feature{features}
{
new_line(0); // 0是第一行的开始位置
}
token_t lexer::lex()
{
skip_space();
const auto c = m_input[m_index];
const auto p = m_input[m_index + 1];
if (c == '-' && p == '-') {
return scan_comment();
}
if (m_index >= m_length) {
return make_eof();
}
if (is_word_start(c)) {
return scan_ident_or_keyword();
}
switch (c) {
case '\'':
case '\"':
return scan_string_literal();
case 48:
case 49:
case 50:
case 51:
case 52:
case 53:
case 54:
case 55:
case 56:
case 57:
return scan_numeric_literal();
case '.':
if (isdigit(p)) return scan_numeric_literal();
if (p == '.') {
if (m_input[m_index + 2] == '.') return scan_vararg_literal();
return scan_punctuator("..", 2);
}
return scan_punctuator(".", 1);
case '=':
if (p == '=') return scan_punctuator("==", 2);
return scan_punctuator("=", 1);
case '>':
if (m_feature.supports(feature_enum_t::bitwise_operators))
if (p == '>') return scan_punctuator(">>", 2);
if (p == '=') return scan_punctuator(">=", 2);
return scan_punctuator(">", 1);
case '<':
if (m_feature.supports(feature_enum_t::bitwise_operators))
if (p == '<') return scan_punctuator("<<", 2);
if (p == '=') return scan_punctuator("<=", 2);
return scan_punctuator("<", 1);
case '~':
if (p == '=') return scan_punctuator("~=", 2);
if (!m_feature.supports(feature_enum_t::bitwise_operators))
break;
return scan_punctuator("~", 1);
case ':':
if (m_feature.supports(feature_enum_t::lables))
if (p == ':') return scan_punctuator("::", 2);
return scan_punctuator(":", 1);
case '[':
if (p == '[' || p == '=')
return scan_long_string_literal();
return scan_punctuator("[", 1);
case '/':
if (m_feature.supports(feature_enum_t::integer_division))
if (p == '/') return scan_punctuator("//", 2);
return scan_punctuator("/", 1);
case '&':
case '|':
if (!m_feature.supports(feature_enum_t::bitwise_operators))
break;
// fall through
case '*':
case '^':
case '%':
case ',':
case '{':
case '}':
case ']':
case '(':
case ')':
case ';':
case '#':
case '-':
case '+': {
const char op[] = {c, '\0'};
return scan_punctuator(op, 1);
}
default:
break;
}
return make_eof();
}
char lexer::get()
{
auto c = m_input[m_index];
auto p = m_input[m_index + 1];
if (is_eol(c)) {
if (c == '\r' && p == '\n') ++m_index;
if (c == '\n' && p == '\r') ++m_index;
new_line(++m_index);
} else {
++m_index;
}
return c;
}
void lexer::skip_space()
{
while (m_index < m_length) {
if (is_whitespace(m_input[m_index])) {
++m_index;
} else if (!skip_eol()) {
break;
}
}
}
bool lexer::skip_eol()
{
const auto c = m_input[m_index];
const auto p = m_input[m_index + 1];
if (is_eol(c)) {
if (c == '\r' && p == '\n') ++m_index;
if (c == '\n' && p == '\r') ++m_index;
new_line(++m_index);
return true;
}
return false;
}
token_t lexer::scan_comment()
{
m_index += 2; // --
string_view_t comment;
const auto start_index = m_index;
const auto c = m_input[m_index];
// 可能是多行注释
if (c == '[') comment = read_long_string(true);
if (!comment.is_valid()) { // 单行注释
while (m_index < m_length) {
if (is_eol(m_input[m_index])) break;
++m_index;
}
comment = {m_input + start_index, m_index - start_index};
}
return { Comment, comment.to_string(), {start_index, m_index } };
}
token_t lexer::scan_ident_or_keyword()
{
const auto token_start = m_index;
while (is_word_part(m_input[++m_index])); // empty
token_type_t type;
string_t value{m_input + token_start, m_input + m_index};
if (is_keyword(value)) {
type = Keyword;
} else if (value == "true" || value == "false") {
type = BooleanLiteral;
} else if (value == "nil") {
type = NilLiteral;
} else {
type = Identifier;
}
return { type, value, { token_start , m_index} };
}
token_t lexer::scan_string_literal()
{
auto delimiter = m_input[m_index++];
auto string_start = m_index;
auto token_start = m_index;
while (m_index < m_length) {
const char c = m_input[m_index++];
if (c == delimiter) break;
if (c == '\\') {
get(); // TODO
}
if (m_index >= m_length || is_eol(c)) {
auto s = string_t{m_input + string_start, m_input + m_index};
raise(error::unfinished_string{ curr_position(), s});
}
}
return {
StringLiteral,
string_t(m_input + string_start, m_input + m_index - 1),
{ token_start, m_index }
};
}
token_t lexer::scan_long_string_literal()
{
auto start_index = m_index;
auto value = read_long_string(false);
assert(value.is_valid());
return { StringLiteral, value.to_string(), { start_index, m_index } };
}
token_t lexer::scan_numeric_literal()
{
auto token_start = m_index;
auto c = m_input[m_index];
auto p = m_input[m_index + 1];
auto value = (c == '0' && (p == 'x' || p == 'X')) ?
read_hex_literal() : read_dec_literal();
return { NumericLiteral, value.to_string(), { token_start, m_index } };
}
token_t lexer::scan_vararg_literal()
{
auto token_start = m_index;
m_index += 3;
return { VarargLiteral, "...", { token_start, m_index } };
}
token_t lexer::scan_punctuator(const char *expr, std::size_t len)
{
auto token_start = m_index;
m_index += len;
return { Punctuator, expr, { token_start, m_index} };
}
string_view_t lexer::read_hex_literal()
{
const auto token_start = m_index;
m_index += 2;
if (!is_hex_digit(m_input[m_index])) {
raise(error::malformed_number{curr_position(), string_t{m_input + token_start, m_input + m_index}});
}
while (is_hex_digit(m_input[m_index])) ++m_index;
if (m_input[m_index] == '.') {
++m_index;
while (is_hex_digit(m_input[m_index])) ++m_index;
}
auto c = m_input[m_index];
if (c == 'p' || c == 'P') {
++m_index;
c = m_input[m_index];
if (c == '+' || c == '-') ++m_index;
if (!isdigit(m_input[m_index])) {
raise(error::malformed_number{curr_position(), string_t{m_input + token_start, m_input + m_index}});
}
while (isdigit(m_input[m_index])) ++m_index;
}
return {m_input + token_start, m_index - token_start};
}
string_view_t lexer::read_dec_literal()
{
const auto token_start = m_index;
while (isdigit(m_input[m_index])) ++m_index;
if (m_input[m_index] == '.') {
++m_index;
while (isdigit(m_input[m_index])) ++m_index;
}
auto c = m_input[m_index];
if (c == 'e' || c == 'E') {
++m_index;
c = m_input[m_index];
if (c == '+' || c == '-') ++m_index;
c = m_input[m_index];
if (!isdigit(c)) {
raise(error::malformed_number{curr_position(), string_t{m_input + token_start, m_input + m_index}});
}
while (isdigit(m_input[m_index])) ++m_index;
}
return {m_input + token_start, m_index - token_start};
}
string_view_t lexer::read_long_string(bool is_comment)
{
++m_index; // skip [
auto equal_count = 0; //[==..=[
while (m_input[m_index + equal_count] == '=') ++equal_count;
if (m_input[m_index + equal_count] != '[') {
return {};
}
m_index += equal_count + 1;
if (is_eol(m_input[m_index])) skip_eol();
bool terminator_found = false;
const auto string_start = m_index;
while (m_index < m_length) {
while (is_eol(m_input[m_index])) skip_eol();
const char c = m_input[m_index++];
if (c == ']') {
terminator_found = expect_n_char('=', equal_count);
terminator_found = (terminator_found || (m_input[m_index + equal_count] == ']'));
}
if (terminator_found) {
const auto string_size = m_index - string_start - 1;
m_index += equal_count + 1;
return {m_input + string_start, string_size};
}
}
if (is_comment) {
raise(error::unfinished_long_comment{curr_position(), "<eof>"});
} else {
raise(error::unfinished_long_string{curr_position(), "<eof>"});
}
return {}; // unreachable
}
bool lexer::expect_n_char(char c, std::size_t n)
{
for (std::size_t i = 0; i < n; ++i) {
if (m_input[m_index + i] != c) return false;
}
return true;
}
void lexer::raise(const error::syntax_error &error) const noexcept(false)
{
throw error;
}
token_t lexer::make_eof() const
{
return { EndOfFile, "eof", { m_index, m_index } };
}
void lexer::new_line(uint32_t offset)
{
m_lineinfo.new_line(offset);
}
const utils::lineinfo_t &lexer::lineinfo() const
{
return m_lineinfo;
}
} // namespace __detail
CPPLUA_NS_END
|
3a8bee400481c7bcaf6dc099153daa54bba8d093 | 782e8b221d2d106a15a17e60e8620c7fed278429 | /cachelib/allocator/SlabReleaseStats.h | 9f6b3889c75d6c873ae3aa1667713a7845c3387e | [
"Apache-2.0"
] | permissive | ilkerhalil/CacheLib | d02985bba68af40c036fc12411efe317487c50de | d131b686ac135ea873dc4bb62e9133858eaad238 | refs/heads/main | 2023-08-18T07:39:27.272731 | 2021-09-11T02:49:48 | 2021-09-11T02:50:55 | 405,455,233 | 1 | 0 | Apache-2.0 | 2021-09-11T18:33:55 | 2021-09-11T18:33:54 | null | UTF-8 | C++ | false | false | 3,336 | h | SlabReleaseStats.h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include "cachelib/allocator/Cache.h"
#include "cachelib/allocator/CacheStats.h"
namespace facebook {
namespace cachelib {
// Stats for slab releases
class ReleaseStats {
public:
using SlabReleaseEventsBuffer = std::deque<SlabReleaseData>;
ReleaseStats() {}
ReleaseStats(const ReleaseStats&) = delete;
ReleaseStats& operator=(const ReleaseStats& other) = delete;
// add slab release event
// @param from the victim allocation class
// @param to the receiver allocation class.
// @param elapsedTime time took for the cache to release the slab given
// the victim and the receiver
// @param pid pool id
// @param numSlabsInVictim number of slabs in the victim class after the
// event.
// @param numSlabsInReceiver number of slabs in the receiver class after the
// event.
// @param victimAllocSize victim class allocation size.
// @param receiverAllocSize receiver class allocation size.
// @param victimEvictionAge eviction age of victim class defined by the
// lifetime of the oldest item.
// @param receiverEvictionAge eviction age of receiver class defined by
// the lifetime of the oldest item.
// @param numFreeAllocsInVictim number of free allocations in the victim
// class after the event.
void addSlabReleaseEvent(const ClassId from,
const ClassId to,
const uint64_t elapsedTime,
const PoolId pid,
const unsigned int numSlabsInVictim,
const unsigned int numSlabsInReceiver,
const uint32_t victimAllocSize,
const uint32_t receiverAllocSize,
const uint64_t victimEvictionAge,
const uint64_t receiverEvictionAge,
const uint64_t numFreeAllocsInVictim);
// @return slab release events of the given pool.
SlabReleaseEvents getSlabReleaseEvents(const PoolId pid) const;
private:
// max number of events kept in buffer before being consumed by
// getSlabReleaseEvents. once the capacity is reached, oldest recors are
// kicked out.
static constexpr size_t kMaxThreshold{600};
// buffer per pool, holding the events added so far.
std::array<SlabReleaseEventsBuffer, MemoryPoolManager::kMaxPools>
slabReleaseEventsBuffer_{};
// current sequence number of the slab release. this is monotonically bumped
// up everytime a slab release event is added
mutable uint64_t currentSequenceNum_{1};
mutable std::mutex lock_;
};
} // namespace cachelib
} // namespace facebook
|
ff08bb4a96160469a8fe52ae73d932b3a364ef08 | e85338f6d8666eb476698de5025c742b9b838a50 | /ojs/cc/egbobrd.cpp | 26e36681cc90b524a947e31c715190d2ae18a092 | [] | no_license | yancouto/competitive-programming | 8104bb3c45e0b385c2abb4cfcac14c35cce0619e | ac849e3aa858eea56b0aa6b7eb93e9a9e70f9475 | refs/heads/master | 2022-10-19T11:29:46.932829 | 2022-10-07T00:16:43 | 2022-10-07T00:16:43 | 66,641,933 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 490 | cpp | egbobrd.cpp | #include <cstdio>
typedef unsigned long long ull;
const int MAX = 100009;
int n;
ull k;
ull solve() {
int i, x;
ull spent = 1, left = k;
for(i = 0; i < n; i++) {
scanf("%d", &x);
if(x <= left)
left -= x;
else {
x -= left;
int sp = (x + k - 1) / k;
spent += sp;
left = k - (x - (sp - 1) * k);
}
if(left) left--;
}
return spent;
}
int main() {
int t, i;
scanf("%d", &t);
while(t--) {
scanf("%d %llu", &n, &k);
printf("%llu\n", solve());
}
return 0;
} |
21c4392541f03794b8485ca95083393b15807ada | e8da394b1c6b5eb29eebe2f16e639d6acb11511f | /ECF/StatCalc.h | 57841632bec239e92df68e20f5a0d11cfa0cb346 | [
"MIT"
] | permissive | KarlaSalamun/ECF | 53a3a91e1f2926eb3cac32ff5c09b3bed34e942c | 4bd21cf43d09435f034259a6b59129b1df6ad1b3 | refs/heads/master | 2023-01-07T00:14:13.818244 | 2020-11-06T15:06:41 | 2020-11-06T15:06:41 | 310,567,926 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,309 | h | StatCalc.h | #ifndef STATCALC_H_
#define STATCALC_H_
namespace ECF
{
// constants for statistic values reference
enum stats
{ FIT_MIN, FIT_MAX, FIT_AVG, FIT_DEV, STAT_SIZE, STAT_TIME, STAT_EVAL, FIT_LOW, FIT_HIGH };
}
/**
* \ingroup evol population
* \brief Statistics calculation class.
*/
class StatCalc : public Operator
{
private:
uint statNo;
std::vector<double> average_; //!< average fitness values for each generation
std::vector<double> stdDev_; //!< deviation of fitness values for each generation
std::vector<double> max_; //!< maximum fitness values for each generation
std::vector<double> min_; //!< minimum fitness values for each generation
std::vector<uint> sampleSize_;
std::vector<uint> time_;
std::vector<uint> evaluations_; //!< total number of evaluations for each generation
double lowest_; //!< lowest recorded fitness value
double highest_; //!< highest recorded fitness value
uint nEvaluations_; //!< total number of evaluations
StateP state_;
std::string statsFileName_;
std::ofstream statsFile_;
public:
StatCalc();
bool operate(StateP)
{ return false; }
bool operate(const std::vector<IndividualP>&);
void registerParameters(StateP);
bool initialize(StateP);
bool update(std::vector<double>);
void log(int generation = -1);
std::vector<double> getStats(int generation = -1);
void output(uint step);
void copyStats(StatCalcP);
double getFitnessMin(int generation = -1);
double getFitnessMax(int generation = -1);
/**
* increase and return total number of fitness evaluations
*/
uint increaseEvaluations(uint eval = 1)
{
nEvaluations_ += eval;
return nEvaluations_;
}
/**
* set total number of fitness evaluations
*/
void setEvaluations(uint eval)
{ nEvaluations_ = eval; }
/**
* get total number of fitness evaluations
*/
uint getEvaluations()
{ return nEvaluations_; }
/**
* get lowest ever fitness vale
*/
double getLowestFitness()
{ return lowest_; }
/**
* get highest ever fitness vale
*/
double getHighestFitness()
{ return highest_; }
};
typedef boost::shared_ptr<StatCalc> StatCalcP;
#endif /* STATCALC_H_ */
|
37e04586462ba44592caefcb8c74d8ab6b43f5d7 | c9e78c8fb6a319ef533fc4e1c896facd3329b5d2 | /src/GLVertexArray.cpp | 089028d08fec31ad4d92509c97d600c15b3f1a40 | [
"MIT"
] | permissive | stonexjr/davinci | 1538bfee79bc9d419441e751b5143f0a1a780395 | 40793f19de0919e5d74ecb0de10524c4bd10f084 | refs/heads/master | 2021-03-27T16:48:40.858530 | 2017-10-20T01:39:31 | 2017-10-20T01:39:31 | 106,117,889 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,448 | cpp | GLVertexArray.cpp | /*
Copyright (c) 2013-2017 Jinrong Xie (jrxie at ucdavis dot edu)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <iostream>
#include <GL/glew.h>
#include "GLVertexArray.h"
namespace davinci{
GLVertexArrayObject::GLVertexArrayObject(GLenum geotype,std::shared_ptr<GLenum> arrayId/*=NULL*/,
GLenum usage/*=GL_STATIC_DRAW*/, bool warning/*=false*/)
:m_arrayId(arrayId), m_geotype(geotype),
m_hasVertex(false), m_hasColor(false), m_hasNormal(false),
m_vertexComponetCount(3),m_vertexType(0), m_vertexStrideInBytes(0),
m_vertexOffsetInBytes(0),m_colorComponentCount(3),m_colorType(0),
m_colorOffsetInBytes(0), m_normalType(0), m_normalOffsetInBytes(0),
m_attribsSizeInBytes(0), m_enableWarning(warning)
,m_GLVersion(3.3f),m_enabled(false)
{
GLint maxTexImgUnits;
glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS_ARB, &maxTexImgUnits);
glGetIntegerv(GL_MAX_VERTEX_ATTRIBS, &g_maxAttrib);
m_hasTextures.resize(maxTexImgUnits,0);
m_textureType.resize(maxTexImgUnits,0);
m_textureStride.resize(maxTexImgUnits, 0);
m_textureOffset.resize(maxTexImgUnits, 0);
m_textureComponentCount.resize(maxTexImgUnits, 0);
g_GLTypeSizeInBytes[GL_FLOAT] = sizeof(GLfloat);
g_GLTypeSizeInBytes[GL_DOUBLE] = sizeof(GLdouble);
g_GLTypeSizeInBytes[GL_INT] = sizeof(GLint);
g_GLTypeSizeInBytes[GL_UNSIGNED_BYTE] = sizeof(GLubyte);
g_GLTypeSizeInBytes[GL_UNSIGNED_INT] = sizeof(GLuint);
if (m_arrayId==NULL)
{
GLenum id=0;
glGenVertexArrays(1, &id);
m_arrayId = std::shared_ptr<GLenum>(new GLenum(id));
}
}
davinci::GLVertexArrayObject::~GLVertexArrayObject(void)
{
disable();
if (m_arrayId && m_arrayId.unique())
glDeleteVertexArrays(1, &(*m_arrayId) );
}
void davinci::GLVertexArrayObject::setShaderProgId( GLuint progId )
{
for (std::unordered_map<std::string, GLAttributeRef>::iterator it = m_attribs.begin();
it != m_attribs.end() ; ++it)
{
//check if the current attribute is active.
it->second->setShaderProgId(progId);
}
}
void GLVertexArrayObject::enable()
{
glBindVertexArray(*m_arrayId);
GLError::glCheckError("GLVertexArrayObject::enable(): glBindVertexBuffer() failed.");
if (m_vboDefault)// && m_GLVersion>4.4)
{
GLuint bindingIndex = 0 ;
GLintptr offset = 0;
GLsizei stride = m_vertexStrideInBytes;//m_vboDefault->getStride();//computeStride();
m_vboDefault->bindBufferObject();
#if defined(__APPLE__) || defined(MACOSX)
#else
glBindVertexBuffer(m_vboDefault->getBindingIndex()//bindingIndex
, m_vboDefault->getId(), offset, stride);
#endif
GLError::glCheckError("GLVertexArrayObject::enable():glBindVertexBuffer failed!");
}else if(!m_vboDefault && m_attribs.empty()){
GLError::ErrorMessage(string("m_vboDefault is not specified, VAO has no associated VBO."));
}
enableGLClientState();
GLError::glCheckError("GLVertexArrayObject::enable():enableGLClientState() failed!");
if (m_vboDefault)
{
m_vboDefault->unbindBufferObject();
}
glBindVertexArray(0);
m_enabled = true;
}
void GLVertexArrayObject::disable()
{
glBindVertexArray(*m_arrayId);
if (m_vboDefault)// && m_GLVersion>4.4)
{
GLuint bindingIndex = 0 ;
GLintptr offset = 0;
GLsizei stride = m_vertexStrideInBytes;//m_vboDefault->getStride();//computeStride();
m_vboDefault->bindBufferObject();
#if defined(__APPLE__) || defined(MACOSX)
//m_vboDefault->bind();
#else
/*
glBindVertexBuffer(m_vboDefault->getBindingIndex()//bindingIndex
, m_vboDefault->getId(), offset, stride);
*/
#endif
}else if(!m_vboDefault && m_attribs.empty()){
GLError::ErrorMessage(string("m_vboDefault is not specified, VAO has no associated VBO."));
}
disableGLClientState();
if (m_vboDefault)
{
m_vboDefault->releaseBindingIndex();
m_vboDefault->unbindBufferObject();
}
glBindVertexArray(0);
m_enabled = false;
}
void GLVertexArrayObject::sanityCheckVBO()
{
if (!m_vboDefault)
{
GLError::ErrorMessage(string("enableGLClientState(): m_vboDefault==NULL, Please set default VBO if you want to GL compatibility mode to set up vertex attributes!\n"));
}else if (m_vboDefault->getVertexCount()<=0)
{
std::stringstream ss;
ss <<"GLVertexArrayObject::enableGLClientState(): m_vboDefault->getVertexCount()<=0, No vertex attribute content in the associated VBO"
<<".\nCall GLVertexBufferObject::upload() to upload vertex attribute content to GPU";
std::string msg=ss.str();
GLError::ErrorMessage(msg);
}
}
void GLVertexArrayObject::enableGLClientState()
{
//gl[Vertex/Color/Normal/Texture]Pointer() is supported since GL 1.1,
//but is deprecated since 3.3. Use it if you need OpenGL compatibility mode.
//Same functionality can be achieved using glVertexAttribFormat
if (m_hasVertex)
{
if (m_vertexType==0)
{
GLError::ErrorMessage(string("enableGLClientState():Please set vertex type!\n"));
}
sanityCheckVBO();
glEnableClientState(GL_VERTEX_ARRAY);
glVertexPointer(m_vertexComponetCount, m_vertexType/*GL_FLOAT*/, m_vertexStrideInBytes,
reinterpret_cast<const GLvoid*>(m_vertexOffsetInBytes));
GLError::glCheckError(__func__);
}
if (m_hasColor)
{
if (m_colorType==0)
{
GLError::ErrorMessage(string("GLVertexArrayObject::enableGLClientState():Please set color type!\n"));
}
sanityCheckVBO();
glEnableClientState(GL_COLOR_ARRAY);
glColorPointer(m_colorComponentCount, m_colorType /*GL_FLOAT*/,m_vertexStrideInBytes,// m_colorStrideInBytes,
reinterpret_cast<const GLvoid*>(m_colorOffsetInBytes));
GLError::glCheckError(__func__);
}
if (m_hasNormal)
{
if (m_normalType==0)
{
GLError::ErrorMessage(string("GLVertexArrayObject::enableGLClientState():Please set normal type!\n"));
}
sanityCheckVBO();
glEnableClientState(GL_NORMAL_ARRAY);
glNormalPointer(m_normalType /*GL_FLOAT*/,m_vertexStrideInBytes,
reinterpret_cast<const GLvoid*>(m_normalOffsetInBytes));
GLError::glCheckError(__func__);
}
GLint maxTexImgUnits;
glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS_ARB, &maxTexImgUnits);
for (int i = 0 ; i < maxTexImgUnits ; i++)
{
if (m_hasTextures[i])
{
if (m_textureType[i]==0)
{
GLError::ErrorMessage(string("GLVertexArrayObject::enableGLClientState():Please set texture type!\n"));
}
sanityCheckVBO();
glClientActiveTexture(GL_TEXTURE0+i);
glEnableClientState(GL_TEXTURE_COORD_ARRAY);
glTexCoordPointer(m_textureComponentCount[i], m_textureType[i],
m_vertexStrideInBytes,
reinterpret_cast<const GLvoid*>(m_textureOffset[i]));
GLError::glCheckError(__func__);
}
}
/*
//bind user defined attributes.
//https://www.opengl.org/sdk/docs/man/xhtml/glGetActiveAttrib.xml
if (getShaderProgId() > 0)
{
int index=0;
#define maxLength 255
GLenum type=0;
GLchar name[maxLength]={0};
GLint nActiveAttrib=0;
glGetProgramiv(getShaderProgId(), GL_ACTIVE_ATTRIBUTES, &nActiveAttrib);
for (int index = 0 ; index < nActiveAttrib ; index++)
{//Only bind active attribute.
GLsizei length=-1;
GLint size=-1;
glGetActiveAttrib(getShaderProgId(), index,
maxLength-1, &length, &size, &type, name);
name[length]='\0';
string strName(name);
if ( m_attribs.find(strName)==m_attribs.end())
{
if (m_enableWarning)
{
char msg[1024];
sprintf(msg,__func__": Attribute %s is not added in the GLVertexBufferObject.\n",name);
//GLError::WarningMessage(msg);
cout << msg;
}
}else{
m_attribs[strName]->bind();
}
}
}
*/
for (std::unordered_map<string, GLAttributeRef>::iterator it = m_attribs.begin();
it != m_attribs.end() ; ++it)
{
//check if the current attribute is active.
if (it->second->isActive())
{
it->second->enable();
}
}
GLError::glCheckError(__func__);
}
void GLVertexArrayObject::disableGLClientState()
{
if (m_hasVertex)
{
glDisableClientState(GL_VERTEX_ARRAY);
}
if (m_hasColor)
{
glDisableClientState(GL_COLOR_ARRAY);
}
if (m_hasNormal)
{
glDisableClientState(GL_NORMAL_ARRAY);
}
GLint maxTexImgUnits;
glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS_ARB, &maxTexImgUnits);
for (int i = 0 ; i < maxTexImgUnits; i++)
{
if (m_hasTextures[i])
{
glClientActiveTexture(GL_TEXTURE0+i);
glDisableClientState(GL_TEXTURE_COORD_ARRAY);
}
}
//unbind user defined attributes.
for (std::unordered_map<string, GLAttributeRef>::iterator it = m_attribs.begin();
it != m_attribs.end() ; ++it)
{
//it->second->unbind();
it->second->disable();
}
GLError::glCheckError(__func__);
}
void GLVertexArrayObject::draw(GLuint first/*=0*/, size_t count/*=0*/)
{
checkEnable(count);
glBindVertexArray(*m_arrayId);
GLError::glCheckError("GLVertexArrayObject::draw(): glBindVertexArray() failed!");
glDrawArrays(m_geotype, first, count);
GLError::glCheckError("GLVertexArrayObject::draw(): glDrawArrays() failed!");
glBindVertexArray(0);
}
void GLVertexArrayObject::drawInstanced(size_t primcount, GLuint first/*=0*/, size_t count/*=0*/)
{
checkEnable(count);
glBindVertexArray(*m_arrayId);
GLError::glCheckError("GLVertexArrayObject::drawInstanced(): glBindVertexArray() failed!");
glDrawArraysInstanced(m_geotype, first, count, primcount);
GLError::glCheckError("GLVertexArrayObject::drawInstanced(): glDrawArrays() failed!");
glBindVertexArray(0);
}
void GLVertexArrayObject::drawInstancedBaseInstance(size_t primcount, size_t baseInst, GLuint first/*=0*/, size_t count/*=0*/)
{
checkEnable(count);
glBindVertexArray(*m_arrayId);
GLError::glCheckError("GLVertexArrayObject::drawInstancedBaseInstance(): glBindVertexArray() failed!");
glDrawArraysInstancedBaseInstance(m_geotype, first, count, primcount, baseInst);
GLError::glCheckError("GLVertexArrayObject::drawInstancedBaseInstance(): glDrawArraysInstancedBaseInstance() failed!");
glBindVertexArray(0);
}
void GLVertexArrayObject::setTextureType( GLenum type/*=GL_FLOAT*/,GLenum texUnitId/*=GL_TEXTURE0*/ )
{
if (!m_hasTextures[texUnitId])
{
std::stringstream ss;
ss <<"GLVertexArrayObject::setTextureType():Please enable GL_TEXTURE"
<<texUnitId<<" first by calling GLVertexBufferObject::enableTexture()";
std::string msg=ss.str();
GLError::ErrorMessage(msg);
}
m_textureType[texUnitId] = type;
m_enabled = false;
}
void GLVertexArrayObject::setTextureComponentSize( GLuint s,GLenum texUnitId/*=0*/ )
{
if (!m_hasTextures[texUnitId])
{
std::stringstream ss;
ss <<"GLVertexArrayObject::setTextureComponentSize():Please enable GL_TEXTURE"
<<texUnitId
<<" first by calling GLVertexBufferObject::enableTexture()";
std::string msg=ss.str();
GLError::ErrorMessage(msg);
}
m_textureComponentCount[texUnitId] = s;
m_enabled = false;
}
void GLVertexArrayObject::setTextureOffsetInBytes( GLuint s, GLenum texUnitId/*=0*/ )
{
if (!m_hasTextures[texUnitId])
{
std::stringstream ss;
ss <<"GLVertexArrayObject::setTextureOffsetInBytes():Please enable GL_TEXTURE"
<<texUnitId << " first by calling GLVertexBufferObject::enableTexture()";
std::string msg=ss.str();
GLError::ErrorMessage(msg);
}
m_textureOffset[texUnitId] = s;
m_enabled = false;
}
void GLVertexArrayObject::activateAttribute(const std::string& name, bool flag)
{
if (m_attribs.find(name) != m_attribs.end())
{
m_attribs[name]->setActive(flag);
}
}
void GLVertexArrayObject::addAttribute(
GLuint shaderProgId, const std::string& name, GLenum type,
GLuint nComponents, GLuint stride/*=0*/, GLuint offset/*=0*/,
bool normalized/*=0*/, const GLVertexBufferObjectRef vbo/*=NULL*/)
{
if (m_attribs.size()>=g_maxAttrib)
{
stringstream ss;
ss<<__func__<<":exceeds maximum vertex attributes("<<g_maxAttrib<<").\n";
string msg = ss.str();
std::cerr << msg;
GLError::glCheckError(msg);
}
addAttribute(GLAttributeRef(new GLAttribute(shaderProgId, name, type, nComponents,
stride,offset,normalized,
m_enableWarning,vbo)
)
);
}
void GLVertexArrayObject::addAttribute(
GLuint shaderProgId, const std::string& name, GLenum type,
GLuint nComponents, GLuint stride/*=0*/, GLuint offset/*=0*/,
bool normalized/*=0*/, GLuint divisor/*=0*/,
const GLVertexBufferObjectRef vbo/*=NULL*/)
{
if (m_attribs.size()>=g_maxAttrib)
{
stringstream ss;
ss<<__func__<<":exceeds maximum vertex attributes("<<g_maxAttrib<<").\n";
string msg = ss.str();
std::cerr << msg;
GLError::glCheckError(msg);
}
addAttribute(GLAttributeRef(new GLAttribute(shaderProgId, name, type, nComponents,
stride,offset,normalized,
m_enableWarning,divisor, vbo)
)
);
}
void GLVertexArrayObject::addAttribute( const GLAttributeRef attrib )
{
GLenum type = attrib->getType();
if ( g_GLTypeSizeInBytes.find(type)==g_GLTypeSizeInBytes.end())
{
GLError::ErrorMessage(string(__func__)+": cannot recognize the attribute type\n");
}
GLenum shaderProgId = attrib->getShaderProgId();
string name = attrib->getName();
GLint nComponents = attrib->getComponents();
//if (m_attribs.find(name) == m_attribs.end())
//{//add only when not present in m_attribs.
m_shaderProgId = shaderProgId;
m_attribs[name] = attrib;
m_attribsSizeInBytes += (nComponents * g_GLTypeSizeInBytes[type]);
//}
m_enabled = false;
}
GLAttributeRef GLVertexArrayObject::getAttribute( const std::string& name )
{
if(m_attribs.find(name)!= m_attribs.end())
return m_attribs[name];
else
return GLAttributeRef((GLAttribute*)NULL);
}
//TODO: deprecated
GLuint GLVertexArrayObject::computeStride(){
stringstream ss;
string msg;
ss << __func__;
if (m_hasVertex && g_GLTypeSizeInBytes.find(m_vertexType)==g_GLTypeSizeInBytes.end())
{
ss << ": cannot recognize the m_vertexType\n";
msg = ss.str();
GLError::ErrorMessage(msg);
}
if (m_hasColor && g_GLTypeSizeInBytes.find(m_colorType)==g_GLTypeSizeInBytes.end())
{
ss << ": cannot recognize the m_colorType\n";
msg = ss.str();
GLError::ErrorMessage(msg);
}
if (m_hasNormal && g_GLTypeSizeInBytes.find(m_normalType)==g_GLTypeSizeInBytes.end())
{
ss <<__func__<< ": cannot recognize the m_normalType\n";
msg = ss.str();
GLError::ErrorMessage(msg);
}
GLuint bytesPerVertex =(m_hasVertex ? m_vertexComponetCount * g_GLTypeSizeInBytes[m_vertexType] : 0);
bytesPerVertex += (m_hasColor ? m_colorComponentCount * g_GLTypeSizeInBytes[m_colorType] : 0);
bytesPerVertex += (m_hasNormal ? 3 * g_GLTypeSizeInBytes[m_normalType] : 0);
GLint maxTexImgUnits;
glGetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS_ARB, &maxTexImgUnits);
for (int i = 0 ; i < maxTexImgUnits; i++)
{
if (m_hasTextures[i] && g_GLTypeSizeInBytes.find(m_textureType[i])==g_GLTypeSizeInBytes.end())
{
ss <<__func__<< ": cannot recognize the m_textureType in texture unit %d\n";
msg = ss.str();
GLError::ErrorMessage(msg);
}
bytesPerVertex += (m_hasTextures[i] ? m_textureComponentCount[i] * g_GLTypeSizeInBytes[m_textureType[i]] : 0);
}
bytesPerVertex += m_attribsSizeInBytes;
//Considering alignment. The computed bytesPerVertex of type T maybe
//smaller than sizeof(T). We should use the larger one.
//bytesPerVertex = bytesPerVertex < sizeof(T) ? sizeof(T) : bytesPerVertex;
bytesPerVertex = bytesPerVertex < m_vertexStrideInBytes ?
m_vertexStrideInBytes : bytesPerVertex;
return bytesPerVertex;
}
void GLVertexArrayObject::checkEnable(size_t &count)
{
if (!m_enabled)
{
GLError::ErrorMessage(string("Please enable GLVertexArrayObject first, by calling enable(), since your last modification of VAO!"));
}
if(count == 0)
{//If count is 0 or not specified, we will figure it out by counting all available
//vertices in the vertex buffer.
//count how many floats the attributes of a vertex take up.
if(m_vboDefault)
count = m_vboDefault->getVertexCount();//(dataBufferSizeInBytes/bytesPerVertex);
else
{
//check if any attribute exists.
std::unordered_map<std::string, GLAttributeRef>::iterator it = m_attribs.begin();
for ( ;it != m_attribs.end() ; ++it)
{
if (it->second->m_vbo)
{
break;
}
}
if (it == m_attribs.end())
{
GLError::ErrorMessage(string("GLVertexBufferObject::draw():Empty VAO detected! No VBO attached to this VAO! Give VAO a content before calling draw()."));
}
count = it->second->m_vbo->getVertexCount();
}
if (count <= 0)
{
GLError::ErrorMessage(string("GLVertexBufferObject::draw() count<=0.\nMake sure you feed the VBO with correct number of data."));
}
}
}
GLint GLVertexArrayObject::g_maxAttrib = 0;
}
|
992d6e21bfdf5a50b03d769a6bc345e30c602965 | 8db2532351f51f111dfb94dc821c7d3660e97f84 | /task.h | 2dc6e9b118e11b197f386fa4cd423bf6cec860a2 | [] | no_license | Ellomo/EasyGUIForSomeTask | 05308d2c0ac7a51986dc4547174b2d4733656bd8 | 1ca0f89c29594f878fadfc82c461f8b2e528fdad | refs/heads/master | 2020-07-23T13:00:27.765976 | 2019-09-10T13:18:01 | 2019-09-10T13:18:01 | 207,565,050 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,802 | h | task.h | #ifndef TASK_H
#define TASK_H
#include <QThread>
#include <QtTest/QTest> // так как в условии указано, что задачи должны выполнять что-то
// подключенна библиотека для тестирования, будем использовать искуственную задержку
// необходимо не тольк оее заинклюдить, но и в в файле .pro указать "QT += testlib"
enum typeTask { // перечисления для типа заадчи
proc, // задача которая для вывода процентной статистики
noProc // задача которая без процентной статистики
};
class Task : public QThread // наследуем от нити в QT
{
Q_OBJECT
public:
explicit Task(QThread *parent = nullptr);
Task(// конструктор
// переменные которые относятся к статистике задачи
typeTask type, // тип задачи
unsigned int finishdTask_value, // конечное значение
// переменные которые относятся к телу задачи
unsigned int minDelayTime,
unsigned int maxDelayTime
);
unsigned int getFinishdTaskValue(); // возврящает максимальное число итераций в задаче
// в коде не используется, была добавлена приотладке
typeTask getTaskType(); // возвращает тип задачи, с поцентами или без статистика ведется
bool isComlete(); // завершена ли задача
// в коде не используется, была добавлена приотладке
signals:
void currentTaskValueChanged(Task * task, unsigned int newValue); // сигнал об изменении текущего значения
void currentTaskStatusChanged(Task * task, bool newStatus); // сигнал об изменении статуса
public slots:
private:
unsigned int finishdTask_value = 0; // значение при котором задача считается выполненной
unsigned int currentTask_value = 0; // текущее значение задачи
// количество пакетов, итераций цикла, распакованных файлов и т.д.
bool complete = false; // флаг завершения задачи
typeTask type = noProc; // тип задачи
//---- далее все что относится к основнму телу задачи -----------------------//
void bodyIterationTask ( // основная функция итерации задачи, какое-то вычисление
unsigned int minDelayTime,
unsigned int maxDelayTime
);
unsigned int minDelayTime; // минимальное время задержки при итерации
unsigned int maxDelayTime; // максимальное время задержки при итерации
// так как вместо сложного математического расчета
// будет использована искуственная задержка
// то размер искуственной задержки будем брать от minDelayTime до maxDelayTime
//----------------------------------------------------------------------------
protected:
void run() override; // переопределим функцию для запуска задачи
};
#endif // TASK_H
|
309b6f96bbf6c0fa5d28213574d70a1a4a33adf8 | 6aa9e6b1ffc7d253a417a05dc8af3ce18a695d4a | /main.cpp | 7ee66387ac76d8dfbda2453c6938b07dd9455816 | [] | no_license | wendell256/P3Lab-5_JonrryEnamorado | a3f8a7a7d65e3da321c1a96601343c89a713bdfe | 9aa4a3045d410366f0afcdcd6fb3c81beb6fc273 | refs/heads/master | 2020-03-27T05:33:22.566448 | 2018-08-25T00:07:24 | 2018-08-25T00:07:24 | 146,029,679 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,201 | cpp | main.cpp | #include "Ingredientes.h"
#include "Platos.h"
#include "Bodega.h"
#include "Clientes.h"
#include <iostream>
#include <vector>
#include <string>
using namespace std;
void Administracion();
void Clientesl();
void CrearIngrediente();
void CrearPlato();
Bodega* bodega = new Bodega();
vector<Clientes*> clientes;
int main(){
char resp='s';
while(resp=='s' || resp =='S'){
int opc=0;
cout<<endl;
cout<<"BIENVENIDO AL RESTAURANTE LAGOS ENAMORADO"<<endl<<"1)Administracion"<<endl<<"2)Clientes"<<endl<<
"3)Listar Bodega y Menu"<<endl<<"Seleccione una opcion:"<<endl;
cin>>opc;
switch(opc){
case 1:
Administracion();
break;
case 2:
Clientesl();
break;
case 3:
if(bodega->Ingredients.empty()){
cout<<"***bodega vacia***"<<endl;
}else{
bodega->printPlat();
cout<<endl;
}
if(bodega->menu.empty()){
cout<<"***menu vacio***"<<endl;
}
else{
bodega->printIng();
}
break;
default:
cout<<"Opcion no valida"<<endl;
break;
}
cout<<"Desea reiniciar?s/n"<<endl;
cin>>resp;
}
return 0;
}
void Administracion(){
int opc=0;
cout<<endl<<"1)Nuevo Ingrediente"<<endl<<"2)Nuevo Plato"<<endl<<"Seleccione Opcion:"<<endl;
cin>>opc;
cout<<endl;
switch(opc){
case 1:
CrearIngrediente();
break;
case 2:
if(bodega->Ingredients.empty()){
cout<<"ERROR NO HAS CREADO INGREDIENTES PARA CREAR PLATILLOS"<<endl;
}
else{
CrearPlato();
}
break;
default:
cout<<"Opcion no valida"<<endl;
break;
}
}
void Clientesl(){
int opc=0,opc2=0, plato=0;
string name;
Clientes* temp = new Clientes(name);
cout<<"1) Nuevo Cliente"<<endl<<"2) Ingresar"<<endl<<"Ingrese una opcion:"<<endl;
cin>>opc;
switch(opc){
case 1:
cout<<"Ingrese nombre:"<<endl;
cin>>name;
clientes.push_back(temp);
break;
case 2:
for(int i = 0; i < clientes.size(); i++){
cout<<i+1<<")"<<clientes[i]->getName()<<endl;
}
cout<<"Quien eres?Ingresa Numero:"<<endl;
cin>>opc2;
cout<<endl<<"****BIENVENIDO****"<<endl<<"Nombre: "<<clientes[opc2-1]->getName()<<endl<<"Evaluacion:"<<clientes[opc2-1]->getEvaluacionm()<<endl<<"DInero gastado: "<<clientes[opc2-1]->getDinerog();
cout<<"***COMPRA UN PLATO***";
bodega->printPlat();
cout<<endl<<"Ingrese un numero de platillo:"<<endl;
cin>>plato;
break;
default:
cout<<"Opcion no valida"<<endl;
break;
}
}
void CrearIngrediente(){
string name,type;
int opc=0;
double aporte=0,duracion=0,cantidad=0;
cout<<"CREAR INGREDIENTE"<<endl<<"Ingrese nombre:"<<endl;
cin>>name;
cout<<" 1)Lacteos"<<endl<<" 2)Frutas"<<endl<<" 3)Vegetales"<<endl<<" 4)Otros"<<endl<<"Ingrese tipo:"<<endl;
cin>>opc;
while(opc<1 || opc>4){
cout<<"Error Ingrese opcion de nuevo:"<<endl;
cin>>opc;
}
switch(opc){
case 1:
type="Lacteo";
break;
case 2:
type="Fruta";
break;
case 3:
type="Vegetal";
break;
case 4:
type="Otro";
break;
}
cout<<"Ingrese cantidad de aporte al sabor:"<<endl;
cin>>aporte;
cout<<"Ingrese duracion:";
cin>>duracion;
cout<<"Ingrese cantidad en inventario:"<<endl;
cin>>cantidad;
Ingredientes* temp=new Ingredientes(name,type,aporte,duracion,cantidad);
bodega->addIngrediente(temp);
cout<<"INGREDIENTE SE AGREGO EXITOSAMENTE"<<endl;
}
void CrearPlato(){
string name,resena;
int opc=0,sabor=0;
Ingredientes* temp;
double precio,cant;
char resp='s';
cout<<"CREAR PLATILLO"<<endl<<"Ingrese nombre:"<<endl;
cin>>name;
cout<<"Ingrese Precio:"<<endl;
cin>>precio;
cout<<"Ingrese una pequeña reseña:"<<endl;
cin>>resena;
Platos* newPlato = new Platos(0,0,precio,resena,name);
while(resp=='s'||resp=='S'){
cout<<"SELECCIONE INGREDIENTES EN PLATILLO"<<endl;
bodega->printIng();
cin>>opc;
while(opc<1 || opc>bodega->Ingredients.size()){
cout<<"ERROR ingrese ingrediente de nuevo:";
cin>>opc;
}
cout<<"Ingrese cantidad de "<<bodega->Ingredients[opc-1]->getName()<<":"<<endl;
cin>>cant;
newPlato->addIngrediente(bodega->Ingredients[opc-1],cant);
sabor+=bodega->Ingredients[opc-1]->getAporte();
cout<<"Desea ingresar otro ingrediente?s/n"<<endl;
cin>>resp;
}
bodega->addPlato(newPlato);
cout<<"PLATO CREADO"<<endl;
} |
d61a6990b3e8b4540dd80f5e1fe09e9319a6e231 | fe6360bf697243c6c318836a3c64a9c1984b610b | /deprecated/physiCal/include/objectRef.h | e0f3561491c2d56becf871bf0f3b406091fac867 | [] | no_license | davidmueller13/vexx | 366cec96f4abac2e814176cd5d2ae75393561c0d | 9194877951c78cd3fde3e7fbe6d511e40c24f8eb | refs/heads/master | 2021-01-10T11:51:19.124071 | 2015-09-26T15:30:05 | 2015-09-26T15:30:05 | 43,210,604 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,070 | h | objectRef.h | #ifndef OBJECTREF_H
#define OBJECTREF_H
#include "physiCalGlobal.h"
#include "object.h"
BEGIN_PHYSICAL_NAMESPACE
//! Represents an object in a cached frame, we only store positions of the involved elements, not velocity and such
class PHYSICAL_EXPORT objectRef
{
public:
//! a structure to hold a face
struct faceRef
{
position3 a;
position3 b;
position3 c;
};
//! a structure to hold a spring
struct springRef
{
position3 a;
position3 b;
};
//! create an objectRef from the object given
objectRef( const object & );
//! the particles associated with this reference
const QList <position3> &particles() const;
//! the springs associated with this reference
const QList <springRef> &springs() const;
//! the facess associated with this reference
const QList <faceRef> &faces() const;
private:
QList <position3> _particles;
QList <springRef> _springs;
QList <faceRef> _faces;
};
END_PHYSICAL_NAMESPACE
#endif // OBJECTREF_H
|
b51edde5de7ab12b37d1f977c15ad9a9e1adaa2c | eb71128abd894bb2ea471aab9661b13f2613300c | /PolyEngine/Engine/Src/GLMeshResource.hpp | 4d5cb9a9ceae560ecf1cc6028bf325eb2beab70e | [
"MIT"
] | permissive | Arputikos/PolyEngine | dda7dad9b9058230ce395e3cf092c4d38b267750 | 176e99a5ccdcef38461fcbf160ccfdc06916b003 | refs/heads/master | 2021-01-21T14:01:08.031438 | 2017-05-28T15:29:58 | 2017-05-28T15:29:58 | 91,818,208 | 0 | 0 | null | 2017-05-28T15:29:59 | 2017-05-19T15:11:01 | C | UTF-8 | C++ | false | false | 1,364 | hpp | GLMeshResource.hpp | #pragma once
#include <Dynarray.hpp>
#include <EnumUtils.hpp>
#include <Color.hpp>
#include "ResourceBase.hpp"
#include "GLTextureResource.hpp"
struct aiMesh;
struct aiMaterial;
typedef unsigned int GLuint;
namespace Poly
{
class ENGINE_DLLEXPORT GLMeshResource : public ResourceBase
{
public:
class ENGINE_DLLEXPORT SubMesh : public BaseObject<>
{
public:
enum class eBufferType {
VERTEX_BUFFER,
TEXCOORD_BUFFER,
NORMAL_BUFFER,
INDEX_BUFFER,
_COUNT
};
struct Material {
float SpecularIntensity;
float SpecularPower;
Color SpecularColor;
};
SubMesh(const String& path, aiMesh* mesh, aiMaterial* material);
virtual ~SubMesh();
GLuint GetVAO() const { return VAO; }
GLuint GetVBO(eBufferType type) const { return VBO[type]; }
const GLTextureResource* GetDiffTexture() const { return DiffuseTexture; }
size_t GetVertexCount() const { return VertexCount; }
const Material& GetMaterial() { return Mtl; }
private:
GLuint VAO;
EnumArray<GLuint, eBufferType> VBO;
GLTextureResource* DiffuseTexture = nullptr; // only diffuse texture for now
size_t VertexCount;
Material Mtl;
};
GLMeshResource(const String& path);
virtual ~GLMeshResource();
const Dynarray<SubMesh*>& GetSubMeshes() const { return SubMeshes; }
private:
Dynarray<SubMesh*> SubMeshes;
};
} |
2ed8c1e1d5026aebf1844c47d120defa5c126880 | c0bd2095c4d87fd2b9ae73f128f2d693eea0ae46 | /HolaSDL/BulletsAsteroidsCollision.h | f3779534859a7d9764c80141231cd65c52980422 | [] | no_license | GonzaPM7/TPV_2 | 7cad4529d0953f2dabf030ebebc7f3b969961437 | c423bf331b280cd5ecfffe221f8bd3f20fbf00f9 | refs/heads/master | 2020-04-21T08:20:33.720145 | 2019-06-22T09:24:29 | 2019-06-22T09:24:29 | 169,416,688 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 460 | h | BulletsAsteroidsCollision.h | #pragma once
#include "PhysicsComponent.h"
#include "Asteroid.h"
#include "Bullet.h"
#include "Messages_defs.h"
class BulletsAsteroidsCollision : public PhysicsComponent
{
private:
const vector<Asteroid*>* asteroids_ = nullptr;
const vector<Bullet*>* bullets_ = nullptr;
public:
BulletsAsteroidsCollision();
~BulletsAsteroidsCollision();
virtual void update(Container* c, Uint32 time);
virtual void receive(Container* c, const msg::Message& msg);
};
|
437c3d3b0da37e25a185fbab5b8a3adc6cbe1ecb | cfa354939347bce1cb7e47f704269d381f7585b9 | /data_structures/combined/pattern2.cpp | 7433582f43095a9ff828cd5a3f50d09c13654f39 | [] | no_license | akashtomer0786/algorithms | beb490b82b1f0b162cd30899514d57fcad58b2c0 | 894f58654d8b8ccd1f794e52d3155d3af071593b | refs/heads/master | 2023-07-20T11:12:28.045063 | 2023-07-13T11:15:47 | 2023-07-13T11:15:47 | 193,656,756 | 0 | 1 | null | 2023-07-13T11:15:49 | 2019-06-25T07:25:19 | C++ | UTF-8 | C++ | false | false | 399 | cpp | pattern2.cpp | #include<bits/stdc++.h>
using namespace std;
int main(){
int t;
cin>>t;
while(t--){
int n;
cin>>n;
int space=n;
for(int i=0;i<n;i++){
for(int j=0;j<space;j++){
cout<<" ";
}
for(int j=0;j<2*i+1;j++){
cout<<"*";
}
cout<<endl;
space--;
}
}
}
|
9003aa1f93dac46d47f5bf74dd5c38154681d506 | cd213678fb67ec29df77473b4097848ed4d8f749 | /Estructura de Datos/LinkedStructures/tree.h | 49638b01ce83ad4c611caee5eb3bd575ff7a142a | [] | no_license | KelvinHelmut/ULaSalle | 772739026fde72571b6cbc6eaa3a5399d4d36132 | a1915917cdbb7eba8cc8d49fc52a8c0c163870f3 | refs/heads/master | 2020-04-15T04:41:13.215220 | 2015-10-26T04:27:15 | 2015-10-26T04:27:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 253 | h | tree.h | #ifndef TREE
#define TREE
#include "linkedstructure.h"
template<class T>
class Tree : public LinkedStructure<T> {
public:
virtual void add(T) = 0;
virtual void show(std::ostream&) = 0;
virtual void dot(char* file) = 0;
};
#endif // TREE
|
3871accf85058eb5127d39841ea3acd07115aa32 | ecacebbd5b05ec3548fe77cb36ae0b9ed2308c29 | /tensorflow/core/kernels/conv_ops_sycl_common.h | 5865a94487b5fa1fef5fe6ab94befb8df855b2cd | [
"Apache-2.0"
] | permissive | gongyu/tensorflow | e6e12266a58aa2fd1851352f5a897c725a322281 | c230f52807b7670bbe3fe27746c3a232a538ac6c | refs/heads/master | 2021-05-18T03:25:23.100567 | 2021-02-06T10:13:57 | 2021-02-06T10:13:57 | 251,078,593 | 0 | 0 | Apache-2.0 | 2020-03-29T16:29:29 | 2020-03-29T16:29:28 | null | UTF-8 | C++ | false | false | 12,984 | h | conv_ops_sycl_common.h | #ifndef TENSORFLOW_USE_SYCL
#error This file should only be included when compiling with SYCL support
#endif
#ifndef TENSORFLOW_KERNELS_CONV_OPS_SYCL_COMMON_H_
#define TENSORFLOW_KERNELS_CONV_OPS_SYCL_COMMON_H_
#include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor"
#include "tensorflow/core/platform/macros.h"
namespace tensorflow {
/**
* Helper function to provide the ratio of two integers, always rounded up. If
* the numerator is negative then we assume that the rounded ratio will be
* zero, otherwise we need to ensure that the value is rounded up rather
* than down.
*/
template <
typename IntegerType,
typename std::enable_if<std::is_signed<IntegerType>::value, int>::type = 0>
inline TF_ATTRIBUTE_ALWAYS_INLINE IntegerType
RoundRatioUpAboveZero(const IntegerType num, const IntegerType div) {
static_assert(std::is_integral<IntegerType>::value,
"RoundRatioUpAboveZero is only valid for integral types");
return num < 0 ? 0 : (num % div != 0 ? num / div + 1 : num / div);
}
template <typename IntegerType,
typename std::enable_if<std::is_unsigned<IntegerType>::value>::type* =
nullptr>
inline TF_ATTRIBUTE_ALWAYS_INLINE IntegerType
RoundRatioUpAboveZero(const IntegerType num, const IntegerType div) {
static_assert(std::is_integral<IntegerType>::value,
"RoundRatioUpAboveZero is only valid for integral types");
return num % div != 0 ? num / div + 1 : num / div;
}
/**
* Helper function to provide the ratio of two integers, always rounded up.
*/
template <typename IntegerType>
inline TF_ATTRIBUTE_ALWAYS_INLINE IntegerType
RoundRatioUp(const IntegerType num, const IntegerType div) {
static_assert(std::is_integral<IntegerType>::value,
"RoundRatioUp is only valid for integral types");
IntegerType quotient = num / div;
IntegerType additive = num % div == 0 ? 0 : 1;
return num < 0 ? quotient : quotient + additive;
}
/**
* Helper function to round up an integral value to the nearest multiple of a
* given multiplier.
*/
template <typename IntegerType>
inline TF_ATTRIBUTE_ALWAYS_INLINE IntegerType
RoundUpToNearestMultiple(IntegerType val, const IntegerType multiplier) {
static_assert(std::is_integral<IntegerType>::value,
"RoundUpToNearestMultiple is only valid for integral types");
const IntegerType diff = val % multiplier;
if (diff > 0) {
val += (multiplier - diff);
}
return val;
}
/** Enum to allow specialisations for different convolution algorithms. */
enum class ConvType {
Forward,
InputBackprop,
FilterBackprop,
};
enum class DataLayout {
NHWC,
NCHW,
};
template <DataLayout D>
inline int TensorIndex(int batch, int row, int col, int channel, int n_rows,
int n_cols, int n_channels);
template <>
inline int TensorIndex<DataLayout::NHWC>(int batch, int row, int col, int channel,
int n_rows, int n_cols, int n_channels) {
return ((batch * n_rows + row) * n_cols + col) * n_channels + channel;
}
template <>
inline int TensorIndex<DataLayout::NCHW>(int batch, int row, int col, int channel,
int n_rows, int n_cols, int n_channels) {
return ((batch * n_channels + channel) * n_rows + row) * n_cols + col;
}
/** The different algorithms supported to compute convolutions. */
enum class algorithm {
matmul,
winograd_1x3,
winograd_3x1,
winograd_3x3,
im2col,
direct,
direct_tiled,
not_supported,
};
template <typename T, typename backend_type, algorithm Algo, ConvType CType>
struct Launcher;
struct SYCL2DWindow {
using Index = int;
const Index rstart;
const Index rend;
const Index firstr;
const Index cstart;
const Index cend;
const Index firstc;
const Index batch;
};
struct SYCL2DKernelWindow {
using Index = int;
const Index rstart;
const Index rend;
const Index firstr;
const Index cstart;
const Index cend;
const Index firstc;
const Index feature;
const Index channel;
};
struct SYCLOutputWindow {
using Index = int;
const Index rsize;
const Index csize;
const Index offset;
};
struct SYCLConv2DParams {
using Index = int;
/**
* Note: The _Index template here allows any type of index to be used,
* provided it can be statically cast to the index type use by the parameters.
*/
template <typename _Index>
inline TF_ATTRIBUTE_ALWAYS_INLINE SYCLConv2DParams(
const _Index channels, const _Index features, const _Index batch,
const _Index in_rows, const _Index in_cols, const _Index window_rows,
const _Index window_cols, const _Index stride_rows,
const _Index stride_cols, const _Index out_rows, const _Index out_cols,
const _Index pad_rows, const _Index pad_cols)
: channels_{static_cast<Index>(channels)},
features_{static_cast<Index>(features)},
batch_{static_cast<Index>(batch)},
in_rows_{static_cast<Index>(in_rows)},
in_cols_{static_cast<Index>(in_cols)},
window_rows_{static_cast<Index>(window_rows)},
window_cols_{static_cast<Index>(window_cols)},
stride_rows_{static_cast<Index>(stride_rows)},
stride_cols_{static_cast<Index>(stride_cols)},
out_rows_{static_cast<Index>(out_rows)},
out_cols_{static_cast<Index>(out_cols)},
pad_rows_{static_cast<Index>(pad_rows)},
pad_cols_{static_cast<Index>(pad_cols)},
dilation_rows_{1},
dilation_cols_{1} {}
Index channels_;
Index features_;
Index batch_;
Index in_rows_;
Index in_cols_;
Index window_rows_;
Index window_cols_;
Index stride_rows_;
Index stride_cols_;
Index out_rows_;
Index out_cols_;
Index pad_rows_;
Index pad_cols_;
Index dilation_rows_;
Index dilation_cols_;
};
namespace sycl_conv {
// Ideally we would use a variadic template to capture the arg parameters to
// pass to the functor constructor, however there is a bug in gcc 4.8 which
// prevents the variadic parameter pack from being passed to the cgh lambda. We
// provide a number of functions here to work around this.
template <typename Functor, typename T, typename Index, typename Arg>
static cl::sycl::event launch_transform(Eigen::SyclDevice const& device,
T const* const input,
T* const transform, Index const n_items,
SYCLConv2DParams const& params,
Arg arg) {
static constexpr auto read_mode = Functor::read_mode;
static constexpr auto write_mode = Functor::write_mode;
Index const workgroup_size = device.maxSyclThreadsPerBlock();
Index const n_threads = RoundUpToNearestMultiple(n_items, workgroup_size);
auto event = device.sycl_queue().submit([&](cl::sycl::handler& cgh) {
auto input_access = device.get_sycl_accessor<read_mode>(cgh, input);
auto transform_access =
device.get_sycl_accessor<write_mode>(cgh, transform);
Functor extract_fun(arg, params, input_access, transform_access);
cgh.parallel_for(cl::sycl::range<1>(n_threads), extract_fun);
});
return event;
}
template <typename Functor, typename T, typename Index, typename Arg1,
typename Arg2>
static cl::sycl::event launch_transform(Eigen::SyclDevice const& device,
T const* const input,
T* const transform, Index const n_items,
SYCLConv2DParams const& params,
Arg1 arg1, Arg2 arg2) {
static constexpr auto read_mode = Functor::read_mode;
static constexpr auto write_mode = Functor::write_mode;
Index const workgroup_size = device.maxSyclThreadsPerBlock();
Index const n_threads = RoundUpToNearestMultiple(n_items, workgroup_size);
auto event = device.sycl_queue().submit([&](cl::sycl::handler& cgh) {
auto input_access = device.get_sycl_accessor<read_mode>(cgh, input);
auto transform_access =
device.get_sycl_accessor<write_mode>(cgh, transform);
Functor extract_fun(arg1, arg2, params, input_access, transform_access);
cgh.parallel_for(cl::sycl::range<1>(n_threads), extract_fun);
});
return event;
}
template <typename Functor, typename T, typename Index, typename Arg1,
typename Arg2, typename Arg3>
static cl::sycl::event launch_transform(Eigen::SyclDevice const& device,
T const* const input,
T* const transform, Index const n_items,
SYCLConv2DParams const& params,
Arg1 arg1, Arg2 arg2, Arg3 arg3) {
static constexpr auto read_mode = Functor::read_mode;
static constexpr auto write_mode = Functor::write_mode;
Index const workgroup_size = device.maxSyclThreadsPerBlock();
Index const n_threads = RoundUpToNearestMultiple(n_items, workgroup_size);
auto event = device.sycl_queue().submit([&](cl::sycl::handler& cgh) {
auto input_access = device.get_sycl_accessor<read_mode>(cgh, input);
auto transform_access =
device.get_sycl_accessor<write_mode>(cgh, transform);
Functor extract_fun(arg1, arg2, arg3, params, input_access,
transform_access);
cgh.parallel_for(cl::sycl::range<1>(n_threads), extract_fun);
});
return event;
}
template <typename Functor, typename T, typename Index, typename Arg1,
typename Arg2, typename Arg3, typename Arg4>
static cl::sycl::event launch_transform(Eigen::SyclDevice const& device,
T const* const input,
T* const transform, Index const n_items,
SYCLConv2DParams const& params,
Arg1 arg1, Arg2 arg2, Arg3 arg3,
Arg4 arg4) {
static constexpr auto read_mode = Functor::read_mode;
static constexpr auto write_mode = Functor::write_mode;
const Index workgroup_size = device.maxSyclThreadsPerBlock();
const Index n_threads = RoundUpToNearestMultiple(n_items, workgroup_size);
auto event = device.sycl_queue().submit([&](cl::sycl::handler& cgh) {
auto input_access = device.get_sycl_accessor<read_mode>(cgh, input);
auto transform_access =
device.get_sycl_accessor<write_mode>(cgh, transform);
Functor extract_fun(arg1, arg2, arg3, arg4, params, input_access,
transform_access);
cgh.parallel_for(cl::sycl::range<1>(n_threads), extract_fun);
});
return event;
}
template <bool trans_lhs, bool trans_rhs, typename T, typename Index>
static void launch_matmul(Eigen::SyclDevice const& device, T const* const lhs,
T const* const rhs, T* const output, T const alpha,
Index const m, Index const k, Index const n) {
static constexpr auto lhs_dim = trans_lhs ? 0 : 1;
static constexpr auto rhs_dim = trans_rhs ? 1 : 0;
using ConstTensorType =
Eigen::Tensor<T const, 2, Eigen::RowMajor, Eigen::DenseIndex>;
using ConstTensor = Eigen::TensorMap<ConstTensorType, Eigen::Aligned>;
using TensorType = Eigen::Tensor<T, 2, Eigen::RowMajor, Eigen::DenseIndex>;
using Tensor = Eigen::TensorMap<TensorType, Eigen::Aligned>;
using TensorShape = Eigen::DSizes<Eigen::DenseIndex, 2>;
using ContractDims =
Eigen::IndexPairList<Eigen::type2indexpair<lhs_dim, rhs_dim>>;
TensorShape const lhs_shape{trans_lhs ? k : m, trans_lhs ? m : k};
TensorShape const rhs_shape{trans_rhs ? n : k, trans_rhs ? k : n};
TensorShape const out_shape{m, n};
ConstTensor lhs_tensor{lhs, lhs_shape};
ConstTensor rhs_tensor{rhs, rhs_shape};
Tensor out_tensor{output, out_shape};
if (alpha == static_cast<T>(0)) {
out_tensor.device(device) = lhs_tensor.contract(rhs_tensor, ContractDims{});
} else {
out_tensor.device(device) =
alpha * out_tensor + lhs_tensor.contract(rhs_tensor, ContractDims{});
}
}
template <bool trans_lhs, bool trans_rhs, typename T, typename Index>
static void launch_batch_matmul(Eigen::SyclDevice const& d,
T const* const x_ptr, T const* const y_ptr,
T* const z_ptr, Index const batches,
Index const m, Index const k, Index const n) {
Index const x_size = m * k;
Index const y_size = k * n;
Index const z_size = m * n;
for (int i = 0; i < batches; ++i) {
Index const x_offset = x_size * i;
Index const y_offset = y_size * i;
Index const z_offset = z_size * i;
launch_matmul<trans_lhs, trans_rhs>(d, x_ptr + x_offset, y_ptr + y_offset,
z_ptr + z_offset, static_cast<T>(0), m,
k, n);
}
}
} // namespace sycl_conv
} // namespace tensorflow
#endif // TENSORFLOW_KERNELS_CONV_OPS_SYCL_COMMON_H_
|
e19e92911b2c79d47d186b8e43772046db5ecd22 | 3a5a2dc09a6a3fd49c65dcae0d39200af5ea5e3f | /src/monitor/EventMonitor.h | 250b209abcea281bbf78bcc60a126866834d2416 | [
"BSD-3-Clause"
] | permissive | intel/ixpdimm_sw | d72ec153471bedb9c95db119e5fc422be4c66cc7 | dbd3c99f3524ca6aff80f194ff0f67d4a543b9e3 | refs/heads/master | 2023-06-06T22:02:20.199697 | 2022-08-04T22:49:58 | 2022-08-04T22:49:58 | 46,385,178 | 17 | 7 | BSD-3-Clause | 2018-03-08T20:51:05 | 2015-11-18T00:47:04 | C | UTF-8 | C++ | false | false | 7,286 | h | EventMonitor.h | /*
* Copyright (c) 2015 2016, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Intel Corporation nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This file contains the implementation of the event monitoring class
* of the NvmMonitor service which periodically detects and stores interesting events.
*/
#include "NvmMonitorBase.h"
#include "nvm_management.h"
#include <persistence/schema.h>
#include <string>
#include <map>
#include <vector>
#include <core/NvmLibrary.h>
#ifndef _MONITOR_EVENTMONITOR_H_
#define _MONITOR_EVENTMONITOR_H_
namespace monitor
{
static std::string ERASURE_CODED = "erasure coded";
static std::string CORRECTED = "corrected";
static std::string UNCORRECTABLE = "uncorrectable";
struct deviceInfo
{
bool discovered;
struct device_discovery discovery;
struct device_status status;
bool stored;
struct db_topology_state storedState;
};
//!< Map with a UID string key and deviceInfo Struct
typedef std::map<std::string, struct deviceInfo> DeviceMap;
/*!
* @brief Process to monitor conditions on the system and generate events for important
* changes.
*/
class EventMonitor : public NvmMonitorBase
{
public:
class NoDeviceSavedState : public std::exception
{};
/*!
* Constructor
*/
EventMonitor(core::NvmLibrary &lib = core::NvmLibrary::getNvmLibrary());
virtual ~EventMonitor();
/*!
* Startup and initialization logic.
*/
virtual void init(SYSTEM_LOGGER logger);
virtual void init();
/*!
* Shutdown and cleanup logic.
*/
virtual void cleanup();
/*!
* Core monitoring logic.
*/
virtual void monitor();
/*
* Find and acknowledge an event of the specified code
*/
static void acknowledgeEventCodeForDevice(const int eventCode, const NVM_UID deviceUid);
private:
int m_nsMgmtCallbackId; // callback identifer for delete namespace events
core::NvmLibrary &m_lib;
/*
* Process "start of day" events - conditions to be detected on process start-up.
*/
void startOfDay();
void runPlatformConfigDiagnostic();
void runDiagnostic(const diagnostic_test diagType, const std::string& uid = "");
void checkDeviceStartUpStatus();
DeviceMap getCurrentDeviceMapWithSavedTopology();
DeviceMap getCurrentDeviceMap();
void addCurrentDevicesToDeviceMap(DeviceMap& map);
deviceInfo getTopologyInfoForDevice(const struct device_discovery &device);
bool isSavedTopologyStateValid();
void addSavedTopologyStateToDeviceMap(DeviceMap& map);
std::vector<struct db_topology_state> getSavedTopologyState();
void checkDeviceTopologyForChanges(const DeviceMap &devices);
void processTopologyNewDimms(const DeviceMap &devices,
std::vector<std::string> &replacedHandles);
std::string getReplacedDimmUid(const DeviceMap &devices, const NVM_UINT32 &handle);
void processTopologyModifiedDimms(const DeviceMap &devices,
const std::vector<std::string> &replacedHandles);
void saveCurrentTopologyState(const DeviceMap &devices);
void checkConfigStatusForAllDevices(DeviceMap &devices);
void checkConfigGoalStatus(const std::string &uidStr, const deviceInfo &device);
config_goal_status getConfigGoalStatusForDevice(const std::string &uid);
void createEventForConfigGoalAppliedOnDevice(const std::string &uid);
void acknowledgePlatformConfigEventsForDevice(const std::string &uid);
void acknowledgeEventTypeForDevice(const event_type type, const std::string &uid);
void acknowledgeDeletedNamespaces();
bool namespaceDeleted(const NVM_UID nsUid,
const std::vector<std::string> &nsUids);
/*
* Process conditions to be detected on each monitor cycle.
*/
void monitorDevices();
void runQuickHealthDiagnosticForDevice(const std::string &uid);
void monitorChangesForDevice(const deviceInfo &device);
struct db_dimm_state getSavedStateForDevice(const deviceInfo &device);
void saveStateForDevice(struct db_dimm_state &newState);
void processSensorStateChangesForDevice(const deviceInfo &device, struct db_dimm_state &dimmState);
std::vector<sensor> getSensorsForDevice(const deviceInfo &device);
bool sensorReadingHasIncreased(const std::vector<sensor>& sensors,
const sensor_type sensorType, const NVM_UINT64 oldReading);
bool sensorsIncludeType(const std::vector<sensor> &sensors, const sensor_type type);
void detectFwErrorSensorChanges(const std::vector<sensor> &sensors, const NVM_UID deviceUid,
const struct db_dimm_state &savedState);
void createFwErrorLogEvent(const NVM_UID deviceUid, const NVM_UINT64 errorCount);
void updateStateForFwErrorSensors(struct db_dimm_state &dimmState,
const std::vector<sensor> &sensors);
void processHealthChangesForDevice(const deviceInfo &device, struct db_dimm_state &dimmState);
void acknowledgePastHealthChangesForDevice(const deviceInfo &device);
void createDeviceHealthEvent(const NVM_UID uid, const device_health oldHealth, const device_health newHealth);
void processSanitizeChangesForDevice(const deviceInfo &device, struct db_dimm_state &dimmState);
void createSanitizeOperationEvent(const NVM_UID uid, const device_sanitize_status oldSanitizeStatus,
const device_sanitize_status newSanitizeStatus);
bool isActionRequiredForDeviceHealth(enum device_health health);
event_severity getEventSeverityForDeviceHealth(enum device_health health);
std::string deviceHealthToStr(enum device_health health);
void initializeDimmState(struct db_dimm_state &dimmState, const deviceInfo& device);
void initializeSensorStateForDevice(struct db_dimm_state &dimmState, const deviceInfo& device);
NVM_UINT64 getLatestSensorReading(const std::vector<sensor> &sensors,
const sensor_type sensorType,
const NVM_UINT64 oldReading);
void monitorNamespaces(PersistentStore *p_Store);
std::string namespaceHealthToStr(enum namespace_health health);
};
}
#endif /* _MONITOR_EVENTMONITOR_H_ */
|
a2b0ec0ef083a3827669c31941e227d2279a7eda | 6b51945368e0a643fabd554c7567fa5bc167d549 | /utils.ino | ebe4307bac74b3187c404fdbc02400d4f67d7bf9 | [] | no_license | labrache/MKR-AlarmClock | ac4500b445a4ec35bef6c863b2bf125548d7861a | c8ba6b77ad4a1c1041a2aef7ef9b0c0b94ef9383 | refs/heads/master | 2022-10-20T16:43:43.416430 | 2020-06-16T23:56:41 | 2020-06-16T23:56:41 | 272,836,289 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,499 | ino | utils.ino | #include <utility/wifi_drv.h>
#include <ArduinoHttpClient.h>
int volsegtimeout = 0;
int oldWstatus = -99;
bool data_read = false;
int read_status = 0;
bool waitForRedir = false;
bool gotRedir = false;
bool gotOk = false;
String newLocation = "";
void prepareHandleHeader(){
data_read = false;
read_status = 0;
gotOk = false;
}
bool isRedirection(String& host, String& path, int& port){
if(gotRedir) {
gotRedir = false;
return parseUrl(newLocation,host,path,port);
} else {
return false;
}
}
bool canProcessMusic(WiFiClient &client){
if(data_read){
return true;
} else {
String line = client.readStringUntil('\n');
if(line.length() == 1){
if(gotOk){
data_read = true;
}
} else {
if(read_status == 0){
if(line.startsWith("HTTP")){
int startBlank = line.indexOf(" ")+1;
int httpCodeEnd = line.indexOf(" ",startBlank);
String httpCode = line.substring(startBlank,httpCodeEnd);
Serial.print("HTTP Code:");
Serial.println(httpCode);
switch(httpCode.toInt()){
case 302:
waitForRedir = true;
break;
case 301:
waitForRedir = true;
break;
case 200:
gotOk = true;
break;
}
read_status = 1;
}
}else if(read_status == 1){
if(waitForRedir){
if(line.startsWith("Location:")){
newLocation = line.substring(line.indexOf(" ")+1,line.length()-1);
gotRedir = true;
waitForRedir = false;
Serial.print("Got new location: ");
Serial.println(newLocation);
client.flush();
client.stop();
}
}
}
}
}
return false;
}
bool isMusic(String filename) {
if (filename.endsWith(".mp3")) return true;
else if (filename.endsWith(".wma")) return true;
else if (filename.endsWith(".flac")) return true;
else if (filename.endsWith(".wav")) return true;
return false;
}
void printDirectory(File dir, int numTabs) {
while(true) {
File entry = dir.openNextFile();
if (! entry) {
break;
}
for (uint8_t i=0; i<numTabs; i++) {
Serial.print('\t');
}
Serial.print(entry.name());
if (entry.isDirectory()) {
Serial.println("/");
printDirectory(entry, numTabs+1);
} else {
Serial.print("\t\t");
Serial.println(entry.size(), DEC);
}
entry.close();
}
}
bool parseUrl(const String aurl, String& host, String& path, int& port){
// https://github.com/lbussy/LCBUrl/blob/master/examples/Basic/Basic.ino
LCBUrl url;
if (!url.setUrl(aurl)) {
return false;
} else {
host = url.getHost();
port = url.getPort();
path = "/"+url.getPath();
return true;
}
}
String randomFile() {
int fileChoose = 0;
for(int i = 0; i < 2; i++){
int fileCount = 0;
File dir = SD.open("/");
bool explore = true;
while(explore)
{
File entry = dir.openNextFile();
if(!entry){
explore = false;
} else {
if (!entry.isDirectory()) {
String entryName = String(entry.name());
entryName.toLowerCase();
if (isMusic(entryName)) {
if(i == 1){
if(fileCount == fileChoose){
return entryName;
}
}
fileCount++;
}
}
}
entry.close();
}
if(i == 0){
fileChoose = random(0,fileCount);
}
dir.close();
}
return "ERROR";
}
void setupRGBLed(){
WiFiDrv::pinMode(LED_GREEN, OUTPUT); //GREEN
WiFiDrv::pinMode(LED_RED, OUTPUT); //RED
WiFiDrv::pinMode(LED_BLUE, OUTPUT); //BLUE
}
void blue(int val){
WiFiDrv::analogWrite(LED_BLUE, val);
}
void red(int val){
WiFiDrv::analogWrite(LED_RED, val);
}
void green(int val){
WiFiDrv::analogWrite(LED_GREEN, val);
}
void segPrint(int8_t middot) {
dots = middot;
segPrint();
}
void segPrint() {
int8_t DispData[4] = {cur_hour / 10,cur_hour % 10,cur_min / 10,cur_min % 10};
matrix.clear();
matrix.writeDigitNum(0, DispData[0]);
matrix.writeDigitNum(1, DispData[1]);
matrix.writeDigitNum(2, dots);
matrix.writeDigitNum(3, DispData[2]);
matrix.writeDigitNum(4, DispData[3]);
matrix.writeDisplay();
if(volsegtimeout != 0){
volsegtimeout = 0;
}
}
void volPrint() {
int8_t DispData[2] = {volume / 10,volume % 10};
matrix.clear();
matrix.writeDigitNum(2, NODOT);
matrix.writeDigitNum(3, DispData[0]);
matrix.writeDigitNum(4, DispData[1]);
matrix.writeDisplay();
volsegtimeout = 2;
}
void secondsprocessutils(){
if(volsegtimeout > 0){
volsegtimeout--;
if(volsegtimeout == 0){
segPrint();
}
}
}
void segHandle(){
if(volsegtimeout == 0){
segPrint();
}
}
void incVol() {
if(volume < MAX_VOLUME){
volume++;
musicPlayer.setVolume(volumeconvert(volume), volumeconvert(volume));
}
volPrint();
}
void decVol() {
if(volume > MIN_VOLUME){
volume--;
musicPlayer.setVolume(volumeconvert(volume), volumeconvert(volume));
}
volPrint();
}
int volumeconvert(int input){
return MIN_VOLUME_RESISTANCE + (((MAX_VOLUME_RESISTANCE - MIN_VOLUME_RESISTANCE) / MAX_VOLUME) * (MAX_VOLUME - input));
}
void controlWifi(){
if(WiFi.status() != oldWstatus){
switch (WiFi.status()) {
case WL_CONNECTED:
red(0);
blue(0);
ArduinoOTA.begin(WiFi.localIP(), OTA_NAME, OTA_PW, InternalStorage);
Serial.println("WL_CONNECTED");
break;
case WL_IDLE_STATUS:
blue(255);
Serial.println("WL_IDLE_STATUS");
break;
case WL_NO_SSID_AVAIL:
red(255);
Serial.println("WL_NO_SSID_AVAIL");
break;
case WL_CONNECT_FAILED:
red(255);
Serial.println("WL_CONNECT_FAILED");
break;
case WL_CONNECTION_LOST:
red(255);
ArduinoOTA.end();
Serial.println("WL_CONNECTION_LOST");
break;
case WL_DISCONNECTED:
red(255);
ArduinoOTA.end();
Serial.println("WL_DISCONNECTED");
break;
}
oldWstatus = WiFi.status();
}
}
void copyIndex(){
downloadFiles("192.168.1.20","/data/index.html",80,"/www/index.htm");
downloadFiles("192.168.1.20","/data/alarm.js",80,"/www/alarm.js");
}
void downloadFiles(const char* aServerName, const char* aPathName, uint16_t aServerPort, const char* aFileName){
WiFiClient wifi = server.available();
HttpClient client = HttpClient(wifi, aServerName, aServerPort);
const int kNetworkTimeout = 30*1000;
const int kNetworkDelay = 1000;
uint8_t dlData[32];
if(client.get(aPathName) == 0){
int statusCode = client.responseStatusCode();
if(statusCode == 200){
if(SD.exists(aFileName)){
Serial.print("Remove existing:"); Serial.println(aFileName);
SD.remove(aFileName);
}
Serial.print("open:"); Serial.println(aFileName);
File f = SD.open(aFileName, FILE_WRITE);
if(f){
int bodyLen = client.contentLength();
unsigned long timeoutStart = millis();
while ( (client.connected() || client.available()) &&
(!client.endOfBodyReached()) &&
((millis() - timeoutStart) < kNetworkTimeout) )
{
size_t asize = client.available();
if (asize)
{
uint8_t bytesread = client.read(dlData, ((asize > sizeof(dlData)) ? sizeof(dlData) : asize));
f.write(dlData, bytesread);
timeoutStart = millis();
}
else
{
delay(kNetworkDelay);
}
}
f.close();
Serial.print("End of write "); Serial.println(aFileName);
} else {
Serial.print("Error opening "); Serial.println(aFileName);
}
} else {
Serial.print("HTTP ");
Serial.println(statusCode);
}
}
client.stop();
wifi.stop();
}
boolean IsDST(time_t t)
{
tmElements_t te;
te.Year = year(t)-1970;
te.Month =3;
te.Day =1;
te.Hour = 0;
te.Minute = 0;
te.Second = 0;
time_t dstStart,dstEnd, current;
dstStart = makeTime(te);
dstStart = nextSunday(dstStart);
dstStart = nextSunday(dstStart); //second sunday in march
dstStart += 2*SECS_PER_HOUR;//2AM
te.Month=11;
dstEnd = makeTime(te);
dstEnd = nextSunday(dstEnd); //first sunday in november
dstEnd += SECS_PER_HOUR; //1AM
return (t>=dstStart && t<dstEnd);
}
|
3a1b055055a81909ca4f0e40efe74e2bedf1e0fe | 47ec47a5bb53e6a12bac91e97741e48ae460881d | /Computer Programming Year - II/An II OOP Labs/Zoo/Zoo/Reservation.cpp | 7e33acbe79b598c216282d962a37142ca1e6e384 | [] | no_license | zVoxty/University | ad97f3bc1ba7e850cad3725098b610e037eceb99 | 8d9822631a3c8c13506d528ab6a3cbf660a511d3 | refs/heads/master | 2020-12-29T02:42:53.186222 | 2018-05-17T05:52:44 | 2018-05-17T05:52:44 | 53,352,966 | 0 | 1 | null | 2016-05-31T09:19:08 | 2016-03-07T19:33:00 | HTML | UTF-8 | C++ | false | false | 120 | cpp | Reservation.cpp | #include "Reservation.h"
Reservation::Reservation()
{
animalsInReservation = 0;
}
Reservation::~Reservation()
{
}
|
9a2a8f97a2baa37b7802827b5e6816de89eef769 | 125a8a845f74950b68e6c0dfe613ae0cd0cd776c | /新增資料夾/complex data.cpp | 44906ddaa52bb88670b414ecba5c33269ab19226 | [] | no_license | Jack-0427/hw-program | cf06bc6ba02a1df1c03475f284e2c9893f61fa10 | ad9f0dce45ae4e0383268fa2e8c3f01483d1464f | refs/heads/main | 2023-08-11T11:12:22.626124 | 2021-09-17T18:46:26 | 2021-09-17T18:46:26 | 347,632,218 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,125 | cpp | complex data.cpp | #include <stdlib.h>
#include <string.h>
#include <iostream>
#include <time.h>
using namespace std;
struct Contact{
char first[10];
char last[10];
int relation;
char phone[10];
};
char* firstname[20] =
{"James", "John", "Robert", "Jacob", "Oliver",
"Michael", "William", "Daniel", "Lucas", "Matthew",
"Mary", "Patricia", "Linda", "Barbara", "Elizabeth",
"Ella", "Grace", "Chloe", "Amelia", "Sofia"};
char* lastname[20] =
{"Smith", "Jones" , "Williams", "Brown", "Davis",
"Evans" , "Wilson", "Thomas", "Roberts", "Jackson",
"Taylor", "Walker", "White", "Green", "Lewis",
"Harris", "Johnson", "Hughes", "Robinson", "Patel"};
int getRandomNum(int* relation){
*relation = rand() % 5 + 1;
}
void getRandomPhone(char* phone){
int i;
phone[0] = '0';
phone[1] = '9';
for(i = 2; i < 10; i++){
phone[i] = '0' + rand() % 10;
}
}
void getRandomName(char* name[]){
int i, j;
i = rand() % 20;
j = rand() % 20;
name[0] = firstname[i];
name[1] = lastname[j];
}
Contact contact[100000];
int compare_relation(int n, int m){
if(n == m)
return 0;
else if(n < m)
return -1;
else if(n > m)
return 1;
}
int compare_string(char* ch1, char* ch2){
if(*ch1 == *ch2 && *ch1 != '\0')
return compare_string(ch1+1, ch2+1);
else if(*ch1 == *ch2)
return 0;
else if(*ch1 < *ch2)
return -1;
else if(*ch1 > *ch2)
return 1;
}
void getString(char* p, char* q){
int i = 0;
while(*p != '\0'){
*q++ = *p++;
i++;
}
*q = '\0';
}
int main(){
FILE *outfile, *infile;
int i, a, b;
int blank[30];
int num = 30;
char* name[2];
outfile = fopen("C:\\46.txt", "w");
srand( (unsigned)time(NULL));
for(int i = 0; i < 50000; ++i){
getRandomName(name);
getString(name[0], contact[i].first);
getString(name[1], contact[i].last);
getRandomNum(&contact[i].relation);
getRandomPhone(contact[i].phone);
}
for(int i = 0; i < 50000; i++){
fprintf(outfile, "%d %s %s %s\n", contact[i].relation, contact[i].first, contact[i].last, contact[i].phone);
}
fclose(outfile);
return 0;
}
|
05a0edbb3b7fb762f49a8655d984dd876f78aca7 | 332e3565b74df517f42653c82cda3eadaa9d15a8 | /soilmoisture_LCD.ino | 3605d1e9ba4009012cca1b0a8934f87f67dc0e4f | [] | no_license | drphloem/arduino-soil-moisture | ae37771706a088a57fc8e0dc45962efcfeb5b44e | 55551ace6ecf7ae7dbe85515349ddf89218ade77 | refs/heads/master | 2020-05-25T08:41:33.018706 | 2019-05-21T02:34:30 | 2019-05-21T02:34:30 | 187,718,047 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,192 | ino | soilmoisture_LCD.ino | #include <SoftwareSerial.h>
// include the library code:
#include <Wire.h>
#include <Adafruit_RGBLCDShield.h>
#include <utility/Adafruit_MCP23017.h>
// The shield uses the I2C SCL and SDA pins. On classic Arduinos
// this is Analog 4 and 5 so you can't use those for analogRead() anymore
// However, you can connect other I2C sensors to the I2C bus and share
// the I2C bus.
Adafruit_RGBLCDShield lcd = Adafruit_RGBLCDShield();
void setup(){
pinMode(A3, OUTPUT);
Serial.begin(9600);
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("Soil Moisture");
lcd.setCursor(0,1);
lcd.print("starting up");
delay(7000);
lcd.setCursor(0,0);
lcd.print(" ");
lcd.setCursor(0,1);
lcd.print(" ");
}
//declare variables with appropriate precision
int value2;
float VWC1;
double soil1Voltage;
void loop(){
senseValues();
//----------------
lcd.setCursor(0,0);
lcd.print("VWC =");
lcd.setCursor(6,0);
lcd.print(VWC1,4);
lcd.setCursor(0,1);
lcd.print("Volts =");
lcd.setCursor(8,1);
lcd.print(soil1Voltage,4);
delay(5000);
lcd.setCursor(0,0);
lcd.print(" ");
lcd.setCursor(0,1);
lcd.print(" ");
// Print some values to the serial monitor
Serial.print("Soil moisture 1 value is: ");
Serial.println(VWC1,4);
Serial.print("Moisture Volts are: ");
Serial.print(soil1Voltage,4);
Serial.println("V");
Serial.print("Analog value is:");
Serial.println(value2,2);
}
void senseValues(){
digitalWrite(A3, HIGH);
delay(500);
value2 = analogRead(A1); //VH400 soil sensor 1
digitalWrite(A3, LOW);
delay(500);
// Calculate Volumetric Water Content based on calibration and piecewise linear equation
soil1Voltage = value2*(5.0/1023.0); //Convert to voltage with 5V input
if(soil1Voltage <= 1.1) {
VWC1 = 10*soil1Voltage-1;
} else if(soil1Voltage > 1.1 && soil1Voltage <= 1.3) {
VWC1 = 25*soil1Voltage-17.5;
} else if(soil1Voltage > 1.3 && soil1Voltage <= 1.82) {
VWC1 = 48.08*soil1Voltage-47.5;
} else if(soil1Voltage > 1.82) {
VWC1 = 26.32*soil1Voltage-7.89;
}
}
|
6290dbee8cd22d34d236b065472772382c11a7e5 | 19a20366ae1f25c4b2558409d94f5f0b3f04702d | /CheckersGame/src/SpriteBatch.cpp | 8c99063fe4458e2a94e3aacc44b1339f64e6690e | [] | no_license | hburnett/NetworkedCheckers | e81ed64b59145e64ec7aed72e0862e4017fd7e1c | 8daa368a7fa0eb6f32f9346e95dc80060c9e9718 | refs/heads/master | 2016-09-06T16:02:34.012652 | 2015-06-11T09:50:00 | 2015-06-11T09:50:00 | 37,038,084 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,298 | cpp | SpriteBatch.cpp | #include "SpriteBatch.h"
#include "SpriteBatch_Immediate.h"
#include "SpriteBatch_NonImmediate.h"
#include "Vec2.h"
#include "Game.h"
SpriteBatch::SpriteBatch(Game *pGame)
{
m_pGame = pGame;
m_fRed = 1.0f;
m_fGreen = 1.0f;
m_fBlue = 1.0f;
m_fAlpha = 1.0f;
m_topLeftUV.x = 0.0f;
m_topLeftUV.y = 0.0f;
m_topRightUV.x = 1.0f;
m_topRightUV.y = 0.0f;
m_bottomRightUV.x = 1.0f;
m_bottomRightUV.y = 1.0f;
m_bottomLeftUV.x = 0.0f;
m_bottomLeftUV.y = 1.0f;
}
SpriteBatch *SpriteBatch::Create( Game *pGame, ESpriteBatchType type )
{
if( type == IMMEDIATE )
{
return new SpriteBatch_Immediate(pGame);
}
if( type == NON_IMMEDIATE )
{
return new SpriteBatch_NonImmediate(pGame);
}
return new SpriteBatch(pGame);
}
void SpriteBatch::Destroy( SpriteBatch *pSpriteBatch )
{
delete pSpriteBatch;
}
void SpriteBatch::SetUVCoordinates(Vec2 &topLeft, Vec2 &topRight, Vec2 &bottomRight, Vec2 &bottomLeft)
{
m_topLeftUV = topLeft;
m_topRightUV = topRight;
m_bottomRightUV = bottomRight;
m_bottomLeftUV = bottomLeft;
}
void SpriteBatch::SetUVCoordinates(Vec2 &topLeft, Vec2 &bottomRight)
{
m_topLeftUV = topLeft;
m_topRightUV.x = bottomRight.x;
m_topRightUV.y = topLeft.y;
m_bottomRightUV = bottomRight;
m_bottomLeftUV.x = topLeft.x;
m_bottomLeftUV.y = bottomRight.y;
}
void SpriteBatch::SetColour(unsigned int color)
{
m_fRed = ((color & 0xFF000000) >> 24 ) / 255.0f;
m_fGreen = ((color & 0x00FF0000) >> 16) / 255.0f;
m_fBlue = ((color & 0x0000FF00) >> 8 ) / 255.0f;
m_fAlpha = ((color & 0x000000FF) >> 0 ) / 255.0f;
}
void SpriteBatch::SetColour(float r, float g, float b, float a)
{
m_fRed = r;
m_fGreen = g;
m_fBlue = b;
m_fAlpha = a;
}
void SpriteBatch::DrawLine( Vec2 startingPoint, Vec2 endingPoint, const Mat3 &transform )
{
glDisable(GL_TEXTURE_2D);
glColor4f(m_fRed/255.0f, m_fGreen/255.0f, m_fBlue/255.0f, m_fAlpha/255.0f);
glBegin(GL_LINES);
glVertex2f((startingPoint.x * transform.GetScale().x) + transform.GetTranslation().x, (startingPoint.y * transform.GetScale().y) + transform.GetTranslation().y);
glVertex2f((endingPoint.x * transform.GetScale().x) + transform.GetTranslation().x, (endingPoint.y * transform.GetScale().y) + transform.GetTranslation().y);
glEnd();
glEnable(GL_TEXTURE_2D);
} |
ac9683d19c735c83aafb8a291ecbdb66911b0808 | 8fa1821f2c7a721b72202794e4e78fc48faae7fb | /include/BitSequenceFactory.h | e389c57c72f1d9acb51f7f2f5c2bb86171c62fff | [] | no_license | koniiiik/libmultialn | 48ce475f5c774226c3e169cc719cc69274f284a9 | ada245d4735cd8f4b93caf50c3e0924be6c13ee2 | refs/heads/master | 2021-01-10T22:11:25.696803 | 2012-05-29T23:02:46 | 2012-05-29T23:02:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,910 | h | BitSequenceFactory.h | #ifndef BITSEQUENCEFACTORY_H
#define BITSEQUENCEFACTORY_H
#include <BitSequence.h>
#include <BitString.h>
#include <BitSequenceDummy.h>
class BitSequenceFactory
{
public:
virtual ~BitSequenceFactory()
{ }
virtual cds_static::BitSequence * getInstance(
const cds_utils::BitString &) const = 0;
};
class BitSequenceRGFactory: public BitSequenceFactory
{
public:
BitSequenceRGFactory(size_t factor):
factor_(factor)
{ }
virtual ~BitSequenceRGFactory()
{ }
virtual cds_static::BitSequence * getInstance(
const cds_utils::BitString &str) const
{
return new cds_static::BitSequenceRG(str, this->factor_);
}
private:
size_t factor_;
};
class BitSequenceRRRFactory: public BitSequenceFactory
{
public:
BitSequenceRRRFactory()
{ }
virtual ~BitSequenceRRRFactory()
{ }
virtual cds_static::BitSequence * getInstance(
const cds_utils::BitString &str) const
{
return new cds_static::BitSequenceRRR(str);
}
};
class BitSequenceSDArrayFactory: public BitSequenceFactory
{
public:
BitSequenceSDArrayFactory()
{ }
virtual ~BitSequenceSDArrayFactory()
{ }
virtual cds_static::BitSequence * getInstance(
const cds_utils::BitString &str) const
{
return new cds_static::BitSequenceSDArray(str);
}
};
class BitSequenceDummyFactory: public BitSequenceFactory
{
public:
BitSequenceDummyFactory()
{ }
virtual ~BitSequenceDummyFactory()
{ }
virtual cds_static::BitSequence * getInstance(
const cds_utils::BitString &) const
{
return new BitSequenceDummy();
}
};
#endif /* BITSEQUENCEFACTORY_H */
|
edc88c7ebb0817ce23bb07cf866027fffea6404b | f7d632d674cef15e906d60caa4744021e773d4d8 | /Codeforces/C+=.cpp | e7dc41972c07ceebeec3ac31ebc2e1fcbd258f8a | [] | no_license | jAnist/competitive_programming | 4b8944a3871684c9ab419af35ebaad5e134de930 | 8f4430a67a8eb5cb4c78a4b73508ed0c727ab658 | refs/heads/master | 2022-12-18T07:30:39.869091 | 2020-09-17T17:06:44 | 2020-09-17T17:06:44 | 258,277,009 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 545 | cpp | C+=.cpp | /*
Question Link: https://codeforces.com/problemset/problem/1368/A
*/
#include <bits/stdc++.h>
using namespace std;
#define ll long long int
void solve(){
ll a,b,n,ans=0,mn,mx,res;
cin>>a>>b>>n;
if(a<b){
mn=a;
mx=b;
}else{
mn=b;
mx=a;
}
while(mx<=n){
res=mx;
mx+=mn;
mn=res;
ans++;
//cout<<mx<<" "<<mn<<endl;
}
cout<<ans<<endl;
}
int main()
{
int t;
cin>>t;
while(t--){
solve();
}
} |
a0e4caee0abc0f618126d53623f69f2523906251 | c3524677697850f7be979396023f6f3893dbed61 | /hufftree.cpp | a2c024fbc28cce2e586c5c904cd9e88bd275174f | [] | no_license | JoicySoares/Huffman | b6e64e38066d6a11bde5388d655dfcf2ee37dbe3 | 37ca0ce5213aa41f3d2702b588abe7a3335ee979 | refs/heads/master | 2021-01-10T16:36:40.092833 | 2015-11-24T02:51:46 | 2015-11-24T02:51:46 | 46,719,715 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,101 | cpp | hufftree.cpp | #include "hufftree.h"
HuffTree::HuffTree()
{
m_root = new Node();
}
HuffTree::HuffTree(Node *root)
{
m_root = root;
}
HuffTree::~HuffTree()
{
delete this;
}
//Cria a árvore de huffman
void HuffTree::buildHuffTree(int *array){
QList<Node* > nodeList;
for(int i = 0; i<256; ++i){
if(array[i] != 0){
Node* tmp = new Node(i, array[i], NULL, NULL);
nodeList.append(tmp);
}
}
while(nodeList.size() > 1){
nodeList = insort(nodeList);
Node* left = nodeList.at(0);
Node* right = nodeList.at(1);
Node* aux = new Node(0x2A, left->m_freq + right->m_freq, left, right);
nodeList.removeFirst();
nodeList.removeFirst();
nodeList.prepend(aux);
}
m_root = nodeList.at(0);
showHuffTree();
}
//Representação da árvore
QByteArray HuffTree::representation(){
QByteArray aux;
if(m_root == 0) return "";
if(m_root->NodeisLeaf()){
if(m_root->m_content == 0x28 || m_root->m_content == 0x2A) aux.append(0x2A);
aux.append(m_root->m_content);
}
else{
HuffTree* sub1 = new HuffTree(m_root->m_left);
HuffTree* sub2 = new HuffTree(m_root->m_right);
aux.append('(').append(sub1->representation()).append(sub2->representation());
}
return aux;
}
Node *HuffTree::current() const
{
return m_current;
}
void HuffTree::setCurrent()
{
m_current = m_root;
}
//Ordena a lista
QList<Node*> HuffTree::insort(const QList<Node*> mylist){
QList<Node*> list = mylist;
for(int i = 0; i< list.size() - 1; ++i){
for(int j=i+1; j< list.size(); ++j){
if(list.at(j)->m_freq < list.at(i)->m_freq){
list.swap(i, j);
}
}
}
return list;
}
//Recriação da arvore
QPair<Node *, int> HuffTree::recursive(QByteArray TreeRepresetation, int pos)
{
unsigned char aux= TreeRepresetation.at(pos);
if(aux!=0x28){
if(aux==0x2A){
pos++;
aux=TreeRepresetation.at(pos);
}
return QPair<Node*,int> (new Node(aux,0,0,0),pos);
}
else{
QPair<Node*,int> left= recursive(TreeRepresetation, pos+1);
QPair<Node*,int> right= recursive(TreeRepresetation, left.second+1);
Node *subTree= new Node (0x2A,0,left.first,right.first);
return QPair<Node*,int>(subTree,right.second);
}
}
//Gera a codificação dm binario
QByteArray HuffTree::code(const uchar cont){
QByteArray Code;
if(m_root->NodeisLeaf()){
if(m_root->m_content == cont && m_root->m_freq != 0) return "";
}
else{
HuffTree *sub1 = new HuffTree(m_root->m_right);
HuffTree *sub2 = new HuffTree(m_root->m_left);
if(!sub1->code(cont).isNull()){
Code.append("1").append(sub1->code(cont));
}
else if(!sub2->code(cont).isNull()){
Code.append("0").append(sub2->code(cont));
}
}
return Code;
}
//Pega o caractere e a codificação em binário
QHash<uchar, QByteArray> HuffTree::codeRef(int *array){
QByteArray aux;
QHash<uchar, QByteArray> ref;
for(int i = 0; i<256; ++i){
if(array[i] != 0){
aux = this->code(uchar(i));
ref.insert(uchar(i), aux);
//Exibe a codificação em binario por caractere.
// qDebug()<<array[i]<< char(i)<< " codigo:" <<qPrintable(aux);
}
}
return ref;
}
void HuffTree::showHuffTree(){
qDebug("arvore:\n%s", qPrintable(m_root->TreeDisplay(0,m_root)));
}
void HuffTree::ToLeft()
{
if(m_current) m_current=m_current->m_left;
}
void HuffTree::Toright()
{
if(m_current) m_current=m_current->m_right;
}
void HuffTree::ToRoot()
{
m_current= m_root;
}
bool HuffTree::transverse(bool value)
{
if(value){
this->Toright();
}
else{
this->ToLeft();
}
return m_current->NodeisLeaf();
}
void HuffTree::Rebuild(QByteArray TreeRepresentation){
m_root= recursive(TreeRepresentation,0).first ;
m_current=m_root;
}
|
31a6f42a6a150649609879ccd4e8ad2dcd097db7 | c1ce8fa1976b4db87d137ce7541afdafbee01793 | /include/monitors/box_monitor.h | 4c7e5d8f2cda1441e2cbc29a7b27a0d2da190e6c | [
"MIT"
] | permissive | johnaparker/Qbox | 0b4a2b4c76248122c59e8da844d81ab5854d63fa | 7b8daf42dcc140448b2fa9e3ba7122bd69bbcb01 | refs/heads/master | 2021-05-23T20:39:46.605662 | 2020-09-09T02:40:47 | 2020-09-09T02:40:47 | 52,501,700 | 2 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,785 | h | box_monitor.h | #ifndef GUARD_box_monitor_h
#define GUARD_box_monitor_h
#include "rank_monitor.h"
#include "surface_monitor.h"
#include <vector>
#include <math.h>
#include "../field2.h"
#include "flux.h"
#include "ntff.h"
#include "force.h"
namespace qbox {
template <class T = DFT::all>
class box_monitor: public rank_monitor<1> {
static constexpr char const* sub_group = "box_monitor";
public:
box_monitor(std::string name, const volume &vol, const Array &freq): rank_monitor(name, sub_group, freq), vol(vol) {
Nfreq = freq.size();
monitors[0] = surface_monitor<T>(name + "_1", vol.get_surface(box_side::y_bottom), freq);
monitors[1] = surface_monitor<T>(name + "_2", vol.get_surface(box_side::x_top), freq);
monitors[2] = surface_monitor<T>(name + "_3", vol.get_surface(box_side::y_top), freq);
monitors[3] = surface_monitor<T>(name + "_4", vol.get_surface(box_side::x_bottom), freq);
}
box_monitor(const volume &vol, const Array &freq): box_monitor("monitor_" + std::to_string(_num_created), vol, freq) {_num_created++;}
void set_F(Field2D *newF) {
monitor::set_F(newF);
for (int i = 0; i != 4; i++)
monitors[i].set_F(newF);
auto group = get_group();
vol.write(group);
fourier.write_properties(group);
}
void update() {
for (int i = 0; i < 4; i++)
monitors[i].update();
}
Flux flux() const {
Array S = Array::Zero(Nfreq);
for (int i = 0; i < 4; i++) {
Array Sm = monitors[i].flux().data();
S += Sm;
}
return Flux(S, *outFile, get_group());
}
ntff_point ntff(const vec &p) const {
vec center = vol.center();
ComplexArray result = ComplexArray::Zero(Nfreq);
for (int i = 0; i < 4; i++)
result += monitors[i].ntff(center, p).data();
return ntff_point(result, *outFile, get_group());
}
ntff_sphere ntff(double radius, int N) const {
ComplexTensor result(N, Nfreq);
Array theta = Array::LinSpaced(N, 0, 2*M_PI);
for (int i = 0; i < N; i++) {
vec p = radius*vec(cos(theta[i]), sin(theta[i])) + vol.center();
ComplexArray p_ntff = ntff(p).data();
for (int j = 0; j < Nfreq; j++)
result(i,j) = p_ntff(j);
}
return ntff_sphere(result, *outFile, get_group());
}
Force force() const {
tensor S(2, Nfreq); S.setZero();
for (int i = 0; i < 4; i++) {
tensor Sm = monitors[i].partial_force().data();
S += Sm;
}
return Force(S, *outFile, get_group());
}
Torque torque() const {
Array S = Array::Zero(Nfreq);
for (int i = 0; i < 4; i++) {
Array Sm = monitors[i].partial_torque(vol.center()).data();
S += Sm;
}
return Torque(S, *outFile, get_group());
}
void operator-=(const box_monitor& other) {
for (int i = 0; i < 4; i++)
monitors[i] -= other.monitors[i];
}
// void write() const {
// }
// void operator-=(const box_monitor& other) {
// for (int i = 0; i != 4; i++)
// monitors[i] -= other.monitors[i];
// }
//equivalent currents
//ComplexTensor Jeq() const;
//ComplexTensor Meq() const;
private:
int Nfreq;
surface_monitor<T> monitors[4];
volume vol;
};
}
#endif
|
1167b56019ccfbc3eed6df5a0a0f7bbc9053051f | 38dc5cd70ba54abd7e369867d6ca85d445f37d8e | /branch-bound.cpp | 374892a3fbadcc7f64256a25ec07b81aa5abcc26 | [
"MIT"
] | permissive | albertopastormr/tsp-mog | b902b7699256be931d454db59144c7b75ebbdf2b | 23c61d23d21e48c0b18527f1875a86c3607125fc | refs/heads/master | 2020-04-09T18:53:07.854500 | 2018-12-29T22:40:44 | 2018-12-29T22:40:44 | 160,526,619 | 1 | 0 | null | null | null | null | ISO-8859-16 | C++ | false | false | 4,185 | cpp | branch-bound.cpp | // Grupo XYZ, Fulano y Mengano
// Comentario general sobre la solucioŽn,
// explicando coŽmo se resuelve el problema
#include <iostream>
#include <iomanip>
#include <fstream>
#include <vector>
#include <assert.h>
#include <stdio.h>
#include <algorithm>
#include "Matriz.h"
using namespace std;
const int INF = numeric_limits<int>::max();
// funcioŽn que resuelve el problema
// comentario sobre el coste, O(f(N))
void caminoMinimo(const int &start,vector<int> &sol,vector<int> &solFinal, const int &V, const Matriz<int> &distancias,
vector<bool> &marcas, int &contVert, int &k, int &suma, int &sumaMin) {
for (int i = 0; i < V; i++) {
if (distancias[k][i] != 0 && distancias[k][i] != -1) {
if (i == start && contVert == V) {
sol[contVert] = i + 1;
suma += distancias[k][i];
contVert++;
if (suma <= sumaMin) {
sumaMin = suma;
suma = 0;
for (int i = 0; i < sol.size(); i++) {
solFinal[i] = sol[i];
}
}
}
else if (!marcas[i]) {
marcas[i] = true;
sol[contVert] = i + 1;
contVert++;
suma += distancias[k][i];
caminoMinimo(start, sol,solFinal, V, distancias, marcas, contVert, i, suma, sumaMin);
marcas[i] = false;
contVert--;
suma -= distancias[k][i];
}
}
}
}
// Resuelve un caso de prueba, leyendo de la entrada la
// configuracioŽn, y escribiendo la respuesta
void resuelveCaso() {
// leer los datos de la entrada
int ini, fin, valor;
int E, V;
int start;//Donde quieres empezar camino minimo y terminarlo vertice
/*
--------------------PARA METER LOS DATOS POR CONSOLA-------------------------
cout << "Introduce el numero de vertices = ";
cin >> V;
Matriz<int> distancias(V, V);
for (int i = 0; i < V; i++) {
for (int j = 0; j < V; j++) {
if(i == j) distancias[i][j] = 0; //La distancia de un vertice a el mismo es 0
else distancias[i][j] = -1; //Para los vertices a los que no puedes ir desde el vertice actual
}
}
//Crear grafo con todas las aristas porque luego solo voy a utilizar las necesarias para calcular el
//camino minimo
cout << "Introduce las aristas y su distancia (3 numeros separados)= ";
cin >> ini;
while(ini != -1) {
cin >> fin >> valor;
distancias[ini - 1][fin - 1] = valor;
distancias[fin - 1][ini - 1] = valor;
cout << "Introduce las aristas y su distancia (3 numeros separados)= ";
cin >> ini;
}
//Mostrando matriz de prueba
/*
for (int i = 0; i < V; i++) {
for (int j = 0; j < V; j++) {
cout << distancias[i][j] << " ";
}
cout << "\n";
}
*/
/*
cout << "inicio del camino = ";
cin >> start;
start--;
*/
//--------------------DATOS DESDE TXT-----------------------
cin >> V >> start;
Matriz<int> distancias(V, V);
for (int i = 0; i < V; i++) {
for (int j = 0; j < V; j++) {
if (i == j) distancias[i][j] = 0; //La distancia de un vertice a el mismo es 0
else distancias[i][j] = -1; //Para los vertices a los que no puedes ir desde el vertice actual
}
}
cin >> ini;
while (ini != -1) {
cin >> fin >> valor;
distancias[ini - 1][fin - 1] = valor;
distancias[fin - 1][ini - 1] = valor;
cin >> ini;
}
vector<bool> marcas(V, false);
vector<int> sol(V + 1, 0);
vector<int> solFinal(V + 1, 0);
sol[0] = start;
start--;
marcas[start] = true;
int suma = 0, sumaMin = INF, contVert = 1;
caminoMinimo(start, sol,solFinal, V, distancias, marcas, contVert, start, suma, sumaMin);
for (int i = 0; i < solFinal.size(); i++) {
cout << solFinal[i] << " ";
}
cout << sumaMin << endl;
}
int main() {
// Para la entrada por fichero.
// Comentar para acepta el reto
#ifndef DOMJUDGE
std::ifstream in("DATOS.TXT");
auto cinbuf = std::cin.rdbuf(in.rdbuf()); //save old buf and redirect std::cin to casos.txt
#endif
int n;
cin >> n;
for (int i = 0; i < n; i++) {
resuelveCaso();
}
// Para restablecer entrada. Comentar para acepta el reto
#ifndef DOMJUDGE // para dejar todo como estaba al principio
std::cin.rdbuf(cinbuf);
system("PAUSE");
#endif
return 0;
} |
cdbcdca1d60cf78aee68ee578462c2ffa607d98a | 884d8fd8d4e2bc5a71852de7131a7a6476bf9c48 | /grid-test/export/macos/obj/src/openfl/display/Loader.cpp | 9f9825ab02461761370c6843358b6da2d99e0b58 | [
"Apache-2.0"
] | permissive | VehpuS/learning-haxe-and-haxeflixel | 69655276f504748347decfea66b91a117a722f6c | cb18c074720656797beed7333eeaced2cf323337 | refs/heads/main | 2023-02-16T07:45:59.795832 | 2021-01-07T03:01:46 | 2021-01-07T03:01:46 | 324,458,421 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 31,533 | cpp | Loader.cpp | // Generated by Haxe 4.1.4
#include <hxcpp.h>
#ifndef INCLUDED_Std
#include <Std.h>
#endif
#ifndef INCLUDED_StringTools
#include <StringTools.h>
#endif
#ifndef INCLUDED_haxe_io_Bytes
#include <haxe/io/Bytes.h>
#endif
#ifndef INCLUDED_haxe_io_Path
#include <haxe/io/Path.h>
#endif
#ifndef INCLUDED_lime_app_Future
#include <lime/app/Future.h>
#endif
#ifndef INCLUDED_lime_utils_AssetLibrary
#include <lime/utils/AssetLibrary.h>
#endif
#ifndef INCLUDED_lime_utils_AssetManifest
#include <lime/utils/AssetManifest.h>
#endif
#ifndef INCLUDED_openfl_Lib
#include <openfl/Lib.h>
#endif
#ifndef INCLUDED_openfl__internal_Lib
#include <openfl/_internal/Lib.h>
#endif
#ifndef INCLUDED_openfl_display_Bitmap
#include <openfl/display/Bitmap.h>
#endif
#ifndef INCLUDED_openfl_display_BitmapData
#include <openfl/display/BitmapData.h>
#endif
#ifndef INCLUDED_openfl_display_DisplayObject
#include <openfl/display/DisplayObject.h>
#endif
#ifndef INCLUDED_openfl_display_DisplayObjectContainer
#include <openfl/display/DisplayObjectContainer.h>
#endif
#ifndef INCLUDED_openfl_display_IBitmapDrawable
#include <openfl/display/IBitmapDrawable.h>
#endif
#ifndef INCLUDED_openfl_display_InteractiveObject
#include <openfl/display/InteractiveObject.h>
#endif
#ifndef INCLUDED_openfl_display_Loader
#include <openfl/display/Loader.h>
#endif
#ifndef INCLUDED_openfl_display_LoaderInfo
#include <openfl/display/LoaderInfo.h>
#endif
#ifndef INCLUDED_openfl_display_MovieClip
#include <openfl/display/MovieClip.h>
#endif
#ifndef INCLUDED_openfl_display_Sprite
#include <openfl/display/Sprite.h>
#endif
#ifndef INCLUDED_openfl_events_ErrorEvent
#include <openfl/events/ErrorEvent.h>
#endif
#ifndef INCLUDED_openfl_events_Event
#include <openfl/events/Event.h>
#endif
#ifndef INCLUDED_openfl_events_EventDispatcher
#include <openfl/events/EventDispatcher.h>
#endif
#ifndef INCLUDED_openfl_events_IEventDispatcher
#include <openfl/events/IEventDispatcher.h>
#endif
#ifndef INCLUDED_openfl_events_IOErrorEvent
#include <openfl/events/IOErrorEvent.h>
#endif
#ifndef INCLUDED_openfl_events_ProgressEvent
#include <openfl/events/ProgressEvent.h>
#endif
#ifndef INCLUDED_openfl_events_TextEvent
#include <openfl/events/TextEvent.h>
#endif
#ifndef INCLUDED_openfl_events_UncaughtErrorEvents
#include <openfl/events/UncaughtErrorEvents.h>
#endif
#ifndef INCLUDED_openfl_net_URLLoader
#include <openfl/net/URLLoader.h>
#endif
#ifndef INCLUDED_openfl_net_URLRequest
#include <openfl/net/URLRequest.h>
#endif
#ifndef INCLUDED_openfl_system_LoaderContext
#include <openfl/system/LoaderContext.h>
#endif
#ifndef INCLUDED_openfl_utils_AssetLibrary
#include <openfl/utils/AssetLibrary.h>
#endif
#ifndef INCLUDED_openfl_utils_Assets
#include <openfl/utils/Assets.h>
#endif
#ifndef INCLUDED_openfl_utils_ByteArrayData
#include <openfl/utils/ByteArrayData.h>
#endif
#ifndef INCLUDED_openfl_utils_IDataInput
#include <openfl/utils/IDataInput.h>
#endif
#ifndef INCLUDED_openfl_utils_IDataOutput
#include <openfl/utils/IDataOutput.h>
#endif
HX_DEFINE_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_40_new,"openfl.display.Loader","new",0x0b8c4b6f,"openfl.display.Loader.new","openfl/display/Loader.hx",40,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_66_close,"openfl.display.Loader","close",0xeefbb487,"openfl.display.Loader.close","openfl/display/Loader.hx",66,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_71_load,"openfl.display.Loader","load",0x0deacc37,"openfl.display.Loader.load","openfl/display/Loader.hx",71,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_163_loadBytes,"openfl.display.Loader","loadBytes",0x5dd804b4,"openfl.display.Loader.loadBytes","openfl/display/Loader.hx",163,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_187_unload,"openfl.display.Loader","unload",0x847d3950,"openfl.display.Loader.unload","openfl/display/Loader.hx",187,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_215_unloadAndStop,"openfl.display.Loader","unloadAndStop",0x25cb8709,"openfl.display.Loader.unloadAndStop","openfl/display/Loader.hx",215,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_239___dispatchError,"openfl.display.Loader","__dispatchError",0xdd48591d,"openfl.display.Loader.__dispatchError","openfl/display/Loader.hx",239,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_246___setContent,"openfl.display.Loader","__setContent",0x7ea757e8,"openfl.display.Loader.__setContent","openfl/display/Loader.hx",246,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_266_BitmapData_onError,"openfl.display.Loader","BitmapData_onError",0x2d70cc54,"openfl.display.Loader.BitmapData_onError","openfl/display/Loader.hx",266,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_270_BitmapData_onLoad,"openfl.display.Loader","BitmapData_onLoad",0x9c5aef1a,"openfl.display.Loader.BitmapData_onLoad","openfl/display/Loader.hx",270,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_285_BitmapData_onProgress,"openfl.display.Loader","BitmapData_onProgress",0x8ecdd6a1,"openfl.display.Loader.BitmapData_onProgress","openfl/display/Loader.hx",285,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_293_loader_onComplete,"openfl.display.Loader","loader_onComplete",0xf5bb9433,"openfl.display.Loader.loader_onComplete","openfl/display/Loader.hx",293,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_320_loader_onComplete,"openfl.display.Loader","loader_onComplete",0xf5bb9433,"openfl.display.Loader.loader_onComplete","openfl/display/Loader.hx",320,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_335_loader_onComplete,"openfl.display.Loader","loader_onComplete",0xf5bb9433,"openfl.display.Loader.loader_onComplete","openfl/display/Loader.hx",335,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_364_loader_onError,"openfl.display.Loader","loader_onError",0x53aca80e,"openfl.display.Loader.loader_onError","openfl/display/Loader.hx",364,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_372_loader_onProgress,"openfl.display.Loader","loader_onProgress",0xfc1e8b27,"openfl.display.Loader.loader_onProgress","openfl/display/Loader.hx",372,0x7a569d9f)
HX_LOCAL_STACK_FRAME(_hx_pos_1b7c318d3e4ffa4a_29_boot,"openfl.display.Loader","boot",0x074eb643,"openfl.display.Loader.boot","openfl/display/Loader.hx",29,0x7a569d9f)
namespace openfl{
namespace display{
void Loader_obj::__construct(){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_40_new)
HXLINE( 41) super::__construct();
HXLINE( 43) this->contentLoaderInfo = ::openfl::display::LoaderInfo_obj::create(::hx::ObjectPtr<OBJ_>(this));
HXLINE( 44) this->uncaughtErrorEvents = this->contentLoaderInfo->uncaughtErrorEvents;
HXLINE( 45) this->_hx___unloaded = true;
}
Dynamic Loader_obj::__CreateEmpty() { return new Loader_obj; }
void *Loader_obj::_hx_vtable = 0;
Dynamic Loader_obj::__Create(::hx::DynamicArray inArgs)
{
::hx::ObjectPtr< Loader_obj > _hx_result = new Loader_obj();
_hx_result->__construct();
return _hx_result;
}
bool Loader_obj::_hx_isInstanceOf(int inClassId) {
if (inClassId<=(int)0x25ff2b41) {
if (inClassId<=(int)0x0c89e854) {
if (inClassId<=(int)0x0330636f) {
return inClassId==(int)0x00000001 || inClassId==(int)0x0330636f;
} else {
return inClassId==(int)0x0c89e854;
}
} else {
return inClassId==(int)0x25ff2b41;
}
} else {
return inClassId==(int)0x4af7dd8e || inClassId==(int)0x6b353933;
}
}
void Loader_obj::close(){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_66_close)
HXDLIN( 66) ::openfl::_internal::Lib_obj::notImplemented(::hx::SourceInfo(HX_("openfl/display/Loader.hx",9f,9d,56,7a),66,HX_("openfl.display.Loader",fd,67,b0,e2),HX_("close",b8,17,63,48)));
}
HX_DEFINE_DYNAMIC_FUNC0(Loader_obj,close,(void))
void Loader_obj::load( ::openfl::net::URLRequest request, ::openfl::_hx_system::LoaderContext context){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_71_load)
HXLINE( 72) this->unload();
HXLINE( 74) this->contentLoaderInfo->loaderURL = ::openfl::Lib_obj::get_current()->get_loaderInfo()->url;
HXLINE( 75) this->contentLoaderInfo->url = request->url;
HXLINE( 76) this->_hx___unloaded = false;
HXLINE( 78) bool _hx_tmp;
HXDLIN( 78) if (::hx::IsNotNull( request->contentType )) {
HXLINE( 78) _hx_tmp = (request->contentType == HX_("",00,00,00,00));
}
else {
HXLINE( 78) _hx_tmp = true;
}
HXDLIN( 78) if (_hx_tmp) {
HXLINE( 80) ::String extension = HX_("",00,00,00,00);
HXLINE( 81) this->_hx___path = request->url;
HXLINE( 83) int queryIndex = this->_hx___path.indexOf(HX_("?",3f,00,00,00),null());
HXLINE( 84) if ((queryIndex > -1)) {
HXLINE( 86) this->_hx___path = this->_hx___path.substring(0,queryIndex);
}
HXLINE( 89) while(::StringTools_obj::endsWith(this->_hx___path,HX_("/",2f,00,00,00))){
HXLINE( 91) this->_hx___path = this->_hx___path.substring(0,(this->_hx___path.length - 1));
}
HXLINE( 94) if (::StringTools_obj::endsWith(this->_hx___path,HX_(".bundle",30,4a,b8,4e))) {
HXLINE( 96) ::openfl::display::Loader _hx_tmp = ::hx::ObjectPtr<OBJ_>(this);
HXDLIN( 96) _hx_tmp->_hx___path = (_hx_tmp->_hx___path + HX_("/library.json",2a,a7,07,47));
HXLINE( 98) if ((queryIndex > -1)) {
HXLINE( 100) ::String _hx_tmp = this->_hx___path;
HXDLIN( 100) request->url = (_hx_tmp + request->url.substring(queryIndex,null()));
}
else {
HXLINE( 104) request->url = this->_hx___path;
}
}
HXLINE( 108) int extIndex = this->_hx___path.lastIndexOf(HX_(".",2e,00,00,00),null());
HXLINE( 109) if ((extIndex > -1)) {
HXLINE( 111) extension = this->_hx___path.substring((extIndex + 1),null());
}
HXLINE( 114) ::String _hx_tmp;
HXDLIN( 114) ::String _hx_switch_0 = extension;
if ( (_hx_switch_0==HX_("gif",04,84,4e,00)) ){
HXLINE( 114) _hx_tmp = HX_("image/gif",10,f4,ba,16);
HXDLIN( 114) goto _hx_goto_3;
}
if ( (_hx_switch_0==HX_("jpeg",a8,f2,65,46)) || (_hx_switch_0==HX_("jpg",e1,d0,50,00)) ){
HXLINE( 114) _hx_tmp = HX_("image/jpeg",1c,8d,db,ce);
HXDLIN( 114) goto _hx_goto_3;
}
if ( (_hx_switch_0==HX_("js",c9,5c,00,00)) ){
HXLINE( 114) _hx_tmp = HX_("application/javascript",cc,7a,f4,a7);
HXDLIN( 114) goto _hx_goto_3;
}
if ( (_hx_switch_0==HX_("json",28,42,68,46)) ){
HXLINE( 114) _hx_tmp = HX_("application/json",87,d8,7f,4e);
HXDLIN( 114) goto _hx_goto_3;
}
if ( (_hx_switch_0==HX_("png",a9,5c,55,00)) ){
HXLINE( 114) _hx_tmp = HX_("image/png",b5,cc,c1,16);
HXDLIN( 114) goto _hx_goto_3;
}
if ( (_hx_switch_0==HX_("swf",42,ab,57,00)) ){
HXLINE( 114) _hx_tmp = HX_("application/x-shockwave-flash",ea,f3,47,4a);
HXDLIN( 114) goto _hx_goto_3;
}
/* default */{
HXLINE( 114) _hx_tmp = HX_("application/x-www-form-urlencoded",9e,61,91,fa);
}
_hx_goto_3:;
HXDLIN( 114) this->contentLoaderInfo->contentType = _hx_tmp;
}
else {
HXLINE( 128) this->contentLoaderInfo->contentType = request->contentType;
}
HXLINE( 145) ::openfl::net::URLLoader loader = ::openfl::net::URLLoader_obj::__alloc( HX_CTX ,null());
HXLINE( 146) loader->dataFormat = 0;
HXLINE( 148) bool _hx_tmp1;
HXDLIN( 148) bool _hx_tmp2;
HXDLIN( 148) if ((this->contentLoaderInfo->contentType.indexOf(HX_("/json",d7,85,3d,56),null()) <= -1)) {
HXLINE( 148) _hx_tmp2 = (this->contentLoaderInfo->contentType.indexOf(HX_("/javascript",1c,04,67,9b),null()) > -1);
}
else {
HXLINE( 148) _hx_tmp2 = true;
}
HXDLIN( 148) if (!(_hx_tmp2)) {
HXLINE( 148) _hx_tmp1 = (this->contentLoaderInfo->contentType.indexOf(HX_("/ecmascript",ac,7b,0f,7d),null()) > -1);
}
else {
HXLINE( 148) _hx_tmp1 = true;
}
HXDLIN( 148) if (_hx_tmp1) {
HXLINE( 152) loader->dataFormat = 1;
}
HXLINE( 155) loader->addEventListener(HX_("complete",b9,00,c8,7f),this->loader_onComplete_dyn(),null(),null(),null());
HXLINE( 156) loader->addEventListener(HX_("ioError",02,fe,41,76),this->loader_onError_dyn(),null(),null(),null());
HXLINE( 157) loader->addEventListener(HX_("progress",ad,f7,2a,86),this->loader_onProgress_dyn(),null(),null(),null());
HXLINE( 158) loader->load(request);
}
HX_DEFINE_DYNAMIC_FUNC2(Loader_obj,load,(void))
void Loader_obj::loadBytes( ::openfl::utils::ByteArrayData buffer, ::openfl::_hx_system::LoaderContext context){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_163_loadBytes)
HXDLIN( 163) ::openfl::display::BitmapData_obj::loadFromBytes(buffer,null())->onComplete(this->BitmapData_onLoad_dyn())->onError(this->BitmapData_onError_dyn());
}
HX_DEFINE_DYNAMIC_FUNC2(Loader_obj,loadBytes,(void))
void Loader_obj::unload(){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_187_unload)
HXDLIN( 187) if (!(this->_hx___unloaded)) {
HXLINE( 189) bool _hx_tmp;
HXDLIN( 189) if (::hx::IsNotNull( this->content )) {
HXLINE( 189) _hx_tmp = ::hx::IsEq( this->content->parent,::hx::ObjectPtr<OBJ_>(this) );
}
else {
HXLINE( 189) _hx_tmp = false;
}
HXDLIN( 189) if (_hx_tmp) {
HXLINE( 191) this->super::removeChild(this->content);
}
HXLINE( 194) if (::hx::IsNotNull( this->_hx___library )) {
HXLINE( 196) ::openfl::utils::Assets_obj::unloadLibrary(this->contentLoaderInfo->url);
HXLINE( 197) this->_hx___library = null();
}
HXLINE( 200) this->content = null();
HXLINE( 201) this->contentLoaderInfo->url = null();
HXLINE( 202) this->contentLoaderInfo->contentType = null();
HXLINE( 203) this->contentLoaderInfo->content = null();
HXLINE( 204) this->contentLoaderInfo->bytesLoaded = 0;
HXLINE( 205) this->contentLoaderInfo->bytesTotal = 0;
HXLINE( 206) this->contentLoaderInfo->width = 0;
HXLINE( 207) this->contentLoaderInfo->height = 0;
HXLINE( 208) this->_hx___unloaded = true;
HXLINE( 210) ::openfl::display::LoaderInfo _hx_tmp1 = this->contentLoaderInfo;
HXDLIN( 210) _hx_tmp1->dispatchEvent( ::openfl::events::Event_obj::__alloc( HX_CTX ,HX_("unload",ff,a0,8c,65),null(),null()));
}
}
HX_DEFINE_DYNAMIC_FUNC0(Loader_obj,unload,(void))
void Loader_obj::unloadAndStop(::hx::Null< bool > __o_gc){
bool gc = __o_gc.Default(true);
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_215_unloadAndStop)
HXLINE( 216) if (::hx::IsNotNull( this->content )) {
HXLINE( 218) this->content->_hx___stopAllMovieClips();
}
HXLINE( 221) {
HXLINE( 221) int _g = 0;
HXDLIN( 221) int _g1 = this->get_numChildren();
HXDLIN( 221) while((_g < _g1)){
HXLINE( 221) _g = (_g + 1);
HXDLIN( 221) int i = (_g - 1);
HXLINE( 223) this->getChildAt(i)->_hx___stopAllMovieClips();
}
}
HXLINE( 226) this->unload();
HXLINE( 228) if (gc) {
HXLINE( 231) __hxcpp_collect(false);
}
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,unloadAndStop,(void))
void Loader_obj::_hx___dispatchError(::String text){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_239___dispatchError)
HXLINE( 240) ::openfl::events::IOErrorEvent event = ::openfl::events::IOErrorEvent_obj::__alloc( HX_CTX ,HX_("ioError",02,fe,41,76),null(),null(),null(),null());
HXLINE( 241) event->text = text;
HXLINE( 242) this->contentLoaderInfo->dispatchEvent(event);
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,_hx___dispatchError,(void))
void Loader_obj::_hx___setContent( ::openfl::display::DisplayObject content,int width,int height){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_246___setContent)
HXLINE( 247) this->content = content;
HXLINE( 249) this->contentLoaderInfo->content = content;
HXLINE( 250) this->contentLoaderInfo->width = width;
HXLINE( 251) this->contentLoaderInfo->height = height;
HXLINE( 253) if (::hx::IsNotNull( content )) {
HXLINE( 255) this->super::addChildAt(content,0);
}
}
HX_DEFINE_DYNAMIC_FUNC3(Loader_obj,_hx___setContent,(void))
void Loader_obj::BitmapData_onError( ::Dynamic error){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_266_BitmapData_onError)
HXDLIN( 266) this->_hx___dispatchError(::Std_obj::string(error));
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,BitmapData_onError,(void))
void Loader_obj::BitmapData_onLoad( ::openfl::display::BitmapData bitmapData){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_270_BitmapData_onLoad)
HXLINE( 273) if (::hx::IsNull( bitmapData )) {
HXLINE( 275) this->_hx___dispatchError(HX_("Unknown error",92,0e,0f,10));
HXLINE( 276) return;
}
HXLINE( 279) this->_hx___setContent( ::openfl::display::Bitmap_obj::__alloc( HX_CTX ,bitmapData,null(),null()),bitmapData->width,bitmapData->height);
HXLINE( 281) ::openfl::display::LoaderInfo _hx_tmp = this->contentLoaderInfo;
HXDLIN( 281) _hx_tmp->dispatchEvent( ::openfl::events::Event_obj::__alloc( HX_CTX ,HX_("complete",b9,00,c8,7f),null(),null()));
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,BitmapData_onLoad,(void))
void Loader_obj::BitmapData_onProgress(int bytesLoaded,int bytesTotal){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_285_BitmapData_onProgress)
HXLINE( 286) ::openfl::events::ProgressEvent event = ::openfl::events::ProgressEvent_obj::__alloc( HX_CTX ,HX_("progress",ad,f7,2a,86),null(),null(),null(),null());
HXLINE( 287) event->bytesLoaded = ( (Float)(bytesLoaded) );
HXLINE( 288) event->bytesTotal = ( (Float)(bytesTotal) );
HXLINE( 289) this->contentLoaderInfo->dispatchEvent(event);
}
HX_DEFINE_DYNAMIC_FUNC2(Loader_obj,BitmapData_onProgress,(void))
void Loader_obj::loader_onComplete( ::openfl::events::Event event){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_293_loader_onComplete)
HXLINE( 292) ::openfl::display::Loader _gthis = ::hx::ObjectPtr<OBJ_>(this);
HXLINE( 296) ::openfl::net::URLLoader loader = ( ( ::openfl::net::URLLoader)(event->target) );
HXLINE( 299) bool _hx_tmp;
HXDLIN( 299) if (::hx::IsNotNull( this->contentLoaderInfo->contentType )) {
HXLINE( 299) _hx_tmp = (this->contentLoaderInfo->contentType.indexOf(HX_("/json",d7,85,3d,56),null()) > -1);
}
else {
HXLINE( 299) _hx_tmp = false;
}
HXDLIN( 299) if (_hx_tmp) {
HXLINE( 301) ::Dynamic loader1 = loader->data;
HXDLIN( 301) ::lime::utils::AssetManifest manifest = ::lime::utils::AssetManifest_obj::parse(( (::String)(loader1) ),::haxe::io::Path_obj::directory(this->_hx___path));
HXLINE( 303) if (::hx::IsNull( manifest )) {
HXLINE( 305) this->_hx___dispatchError(HX_("Cannot parse asset manifest",49,e5,68,e9));
HXLINE( 306) return;
}
HXLINE( 309) ::lime::utils::AssetLibrary library = ::lime::utils::AssetLibrary_obj::fromManifest(manifest);
HXLINE( 311) if (::hx::IsNull( library )) {
HXLINE( 313) this->_hx___dispatchError(HX_("Cannot open library",c2,bb,9d,77));
HXLINE( 314) return;
}
HXLINE( 317) if (::Std_obj::isOfType(library,::hx::ClassOf< ::openfl::utils::AssetLibrary >())) {
HX_BEGIN_LOCAL_FUNC_S3(::hx::LocalFunc,_hx_Closure_0, ::lime::utils::AssetManifest,manifest, ::openfl::display::Loader,_gthis, ::lime::utils::AssetLibrary,library) HXARGC(1)
void _hx_run( ::lime::utils::AssetLibrary _){
HX_GC_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_320_loader_onComplete)
HXLINE( 321) _gthis->_hx___library = ( ( ::openfl::utils::AssetLibrary)(library) );
HXLINE( 322) ::openfl::utils::Assets_obj::registerLibrary(_gthis->contentLoaderInfo->url,_gthis->_hx___library);
HXLINE( 324) bool _hx_tmp;
HXDLIN( 324) if (::hx::IsNotNull( manifest->name )) {
HXLINE( 324) _hx_tmp = !(::openfl::utils::Assets_obj::hasLibrary(manifest->name));
}
else {
HXLINE( 324) _hx_tmp = false;
}
HXDLIN( 324) if (_hx_tmp) {
HXLINE( 326) ::openfl::utils::Assets_obj::registerLibrary(manifest->name,_gthis->_hx___library);
}
HXLINE( 329) ::openfl::display::MovieClip clip = _gthis->_hx___library->getMovieClip(HX_("",00,00,00,00));
HXLINE( 330) ::openfl::display::Loader _gthis1 = _gthis;
HXDLIN( 330) int _hx_tmp1 = ::Std_obj::_hx_int(clip->get_width());
HXDLIN( 330) _gthis1->_hx___setContent(clip,_hx_tmp1,::Std_obj::_hx_int(clip->get_height()));
HXLINE( 332) ::openfl::display::LoaderInfo _gthis2 = _gthis->contentLoaderInfo;
HXDLIN( 332) _gthis2->dispatchEvent( ::openfl::events::Event_obj::__alloc( HX_CTX ,HX_("complete",b9,00,c8,7f),null(),null()));
}
HX_END_LOCAL_FUNC1((void))
HX_BEGIN_LOCAL_FUNC_S1(::hx::LocalFunc,_hx_Closure_1, ::openfl::display::Loader,_gthis) HXARGC(1)
void _hx_run(::String e){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_335_loader_onComplete)
HXLINE( 335) _gthis->_hx___dispatchError(e);
}
HX_END_LOCAL_FUNC1((void))
HXLINE( 319) library->load()->onComplete( ::Dynamic(new _hx_Closure_0(manifest,_gthis,library)))->onError( ::Dynamic(new _hx_Closure_1(_gthis)));
}
}
else {
HXLINE( 341) bool _hx_tmp;
HXDLIN( 341) if (::hx::IsNotNull( this->contentLoaderInfo->contentType )) {
HXLINE( 342) if ((this->contentLoaderInfo->contentType.indexOf(HX_("/javascript",1c,04,67,9b),null()) <= -1)) {
HXLINE( 341) _hx_tmp = (this->contentLoaderInfo->contentType.indexOf(HX_("/ecmascript",ac,7b,0f,7d),null()) > -1);
}
else {
HXLINE( 341) _hx_tmp = true;
}
}
else {
HXLINE( 341) _hx_tmp = false;
}
HXDLIN( 341) if (_hx_tmp) {
HXLINE( 344) this->_hx___setContent( ::openfl::display::Sprite_obj::__alloc( HX_CTX ),0,0);
HXLINE( 354) ::openfl::display::LoaderInfo _hx_tmp = this->contentLoaderInfo;
HXDLIN( 354) _hx_tmp->dispatchEvent( ::openfl::events::Event_obj::__alloc( HX_CTX ,HX_("complete",b9,00,c8,7f),null(),null()));
}
else {
HXLINE( 358) this->contentLoaderInfo->bytes = ( ( ::openfl::utils::ByteArrayData)(loader->data) );
HXLINE( 359) ::openfl::display::BitmapData_obj::loadFromBytes(( ( ::openfl::utils::ByteArrayData)(loader->data) ),null())->onComplete(this->BitmapData_onLoad_dyn())->onError(this->BitmapData_onError_dyn());
}
}
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,loader_onComplete,(void))
void Loader_obj::loader_onError( ::openfl::events::IOErrorEvent event){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_364_loader_onError)
HXLINE( 367) event->target = this->contentLoaderInfo;
HXLINE( 368) this->contentLoaderInfo->dispatchEvent(event);
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,loader_onError,(void))
void Loader_obj::loader_onProgress( ::openfl::events::ProgressEvent event){
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_372_loader_onProgress)
HXLINE( 373) event->target = this->contentLoaderInfo;
HXLINE( 374) this->contentLoaderInfo->dispatchEvent(event);
}
HX_DEFINE_DYNAMIC_FUNC1(Loader_obj,loader_onProgress,(void))
::hx::ObjectPtr< Loader_obj > Loader_obj::__new() {
::hx::ObjectPtr< Loader_obj > __this = new Loader_obj();
__this->__construct();
return __this;
}
::hx::ObjectPtr< Loader_obj > Loader_obj::__alloc(::hx::Ctx *_hx_ctx) {
Loader_obj *__this = (Loader_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(Loader_obj), true, "openfl.display.Loader"));
*(void **)__this = Loader_obj::_hx_vtable;
__this->__construct();
return __this;
}
Loader_obj::Loader_obj()
{
}
void Loader_obj::__Mark(HX_MARK_PARAMS)
{
HX_MARK_BEGIN_CLASS(Loader);
HX_MARK_MEMBER_NAME(content,"content");
HX_MARK_MEMBER_NAME(contentLoaderInfo,"contentLoaderInfo");
HX_MARK_MEMBER_NAME(uncaughtErrorEvents,"uncaughtErrorEvents");
HX_MARK_MEMBER_NAME(_hx___library,"__library");
HX_MARK_MEMBER_NAME(_hx___path,"__path");
HX_MARK_MEMBER_NAME(_hx___unloaded,"__unloaded");
::openfl::display::DisplayObjectContainer_obj::__Mark(HX_MARK_ARG);
HX_MARK_END_CLASS();
}
void Loader_obj::__Visit(HX_VISIT_PARAMS)
{
HX_VISIT_MEMBER_NAME(content,"content");
HX_VISIT_MEMBER_NAME(contentLoaderInfo,"contentLoaderInfo");
HX_VISIT_MEMBER_NAME(uncaughtErrorEvents,"uncaughtErrorEvents");
HX_VISIT_MEMBER_NAME(_hx___library,"__library");
HX_VISIT_MEMBER_NAME(_hx___path,"__path");
HX_VISIT_MEMBER_NAME(_hx___unloaded,"__unloaded");
::openfl::display::DisplayObjectContainer_obj::__Visit(HX_VISIT_ARG);
}
::hx::Val Loader_obj::__Field(const ::String &inName,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 4:
if (HX_FIELD_EQ(inName,"load") ) { return ::hx::Val( load_dyn() ); }
break;
case 5:
if (HX_FIELD_EQ(inName,"close") ) { return ::hx::Val( close_dyn() ); }
break;
case 6:
if (HX_FIELD_EQ(inName,"__path") ) { return ::hx::Val( _hx___path ); }
if (HX_FIELD_EQ(inName,"unload") ) { return ::hx::Val( unload_dyn() ); }
break;
case 7:
if (HX_FIELD_EQ(inName,"content") ) { return ::hx::Val( content ); }
break;
case 9:
if (HX_FIELD_EQ(inName,"__library") ) { return ::hx::Val( _hx___library ); }
if (HX_FIELD_EQ(inName,"loadBytes") ) { return ::hx::Val( loadBytes_dyn() ); }
break;
case 10:
if (HX_FIELD_EQ(inName,"__unloaded") ) { return ::hx::Val( _hx___unloaded ); }
break;
case 12:
if (HX_FIELD_EQ(inName,"__setContent") ) { return ::hx::Val( _hx___setContent_dyn() ); }
break;
case 13:
if (HX_FIELD_EQ(inName,"unloadAndStop") ) { return ::hx::Val( unloadAndStop_dyn() ); }
break;
case 14:
if (HX_FIELD_EQ(inName,"loader_onError") ) { return ::hx::Val( loader_onError_dyn() ); }
break;
case 15:
if (HX_FIELD_EQ(inName,"__dispatchError") ) { return ::hx::Val( _hx___dispatchError_dyn() ); }
break;
case 17:
if (HX_FIELD_EQ(inName,"contentLoaderInfo") ) { return ::hx::Val( contentLoaderInfo ); }
if (HX_FIELD_EQ(inName,"BitmapData_onLoad") ) { return ::hx::Val( BitmapData_onLoad_dyn() ); }
if (HX_FIELD_EQ(inName,"loader_onComplete") ) { return ::hx::Val( loader_onComplete_dyn() ); }
if (HX_FIELD_EQ(inName,"loader_onProgress") ) { return ::hx::Val( loader_onProgress_dyn() ); }
break;
case 18:
if (HX_FIELD_EQ(inName,"BitmapData_onError") ) { return ::hx::Val( BitmapData_onError_dyn() ); }
break;
case 19:
if (HX_FIELD_EQ(inName,"uncaughtErrorEvents") ) { return ::hx::Val( uncaughtErrorEvents ); }
break;
case 21:
if (HX_FIELD_EQ(inName,"BitmapData_onProgress") ) { return ::hx::Val( BitmapData_onProgress_dyn() ); }
}
return super::__Field(inName,inCallProp);
}
::hx::Val Loader_obj::__SetField(const ::String &inName,const ::hx::Val &inValue,::hx::PropertyAccess inCallProp)
{
switch(inName.length) {
case 6:
if (HX_FIELD_EQ(inName,"__path") ) { _hx___path=inValue.Cast< ::String >(); return inValue; }
break;
case 7:
if (HX_FIELD_EQ(inName,"content") ) { content=inValue.Cast< ::openfl::display::DisplayObject >(); return inValue; }
break;
case 9:
if (HX_FIELD_EQ(inName,"__library") ) { _hx___library=inValue.Cast< ::openfl::utils::AssetLibrary >(); return inValue; }
break;
case 10:
if (HX_FIELD_EQ(inName,"__unloaded") ) { _hx___unloaded=inValue.Cast< bool >(); return inValue; }
break;
case 17:
if (HX_FIELD_EQ(inName,"contentLoaderInfo") ) { contentLoaderInfo=inValue.Cast< ::openfl::display::LoaderInfo >(); return inValue; }
break;
case 19:
if (HX_FIELD_EQ(inName,"uncaughtErrorEvents") ) { uncaughtErrorEvents=inValue.Cast< ::openfl::events::UncaughtErrorEvents >(); return inValue; }
}
return super::__SetField(inName,inValue,inCallProp);
}
void Loader_obj::__GetFields(Array< ::String> &outFields)
{
outFields->push(HX_("content",39,8d,77,19));
outFields->push(HX_("contentLoaderInfo",ba,64,65,14));
outFields->push(HX_("uncaughtErrorEvents",6c,14,2c,48));
outFields->push(HX_("__library",db,77,be,c0));
outFields->push(HX_("__path",c5,48,4a,f9));
outFields->push(HX_("__unloaded",3e,ea,ee,fd));
super::__GetFields(outFields);
};
#ifdef HXCPP_SCRIPTABLE
static ::hx::StorageInfo Loader_obj_sMemberStorageInfo[] = {
{::hx::fsObject /* ::openfl::display::DisplayObject */ ,(int)offsetof(Loader_obj,content),HX_("content",39,8d,77,19)},
{::hx::fsObject /* ::openfl::display::LoaderInfo */ ,(int)offsetof(Loader_obj,contentLoaderInfo),HX_("contentLoaderInfo",ba,64,65,14)},
{::hx::fsObject /* ::openfl::events::UncaughtErrorEvents */ ,(int)offsetof(Loader_obj,uncaughtErrorEvents),HX_("uncaughtErrorEvents",6c,14,2c,48)},
{::hx::fsObject /* ::openfl::utils::AssetLibrary */ ,(int)offsetof(Loader_obj,_hx___library),HX_("__library",db,77,be,c0)},
{::hx::fsString,(int)offsetof(Loader_obj,_hx___path),HX_("__path",c5,48,4a,f9)},
{::hx::fsBool,(int)offsetof(Loader_obj,_hx___unloaded),HX_("__unloaded",3e,ea,ee,fd)},
{ ::hx::fsUnknown, 0, null()}
};
static ::hx::StaticInfo *Loader_obj_sStaticStorageInfo = 0;
#endif
static ::String Loader_obj_sMemberFields[] = {
HX_("content",39,8d,77,19),
HX_("contentLoaderInfo",ba,64,65,14),
HX_("uncaughtErrorEvents",6c,14,2c,48),
HX_("__library",db,77,be,c0),
HX_("__path",c5,48,4a,f9),
HX_("__unloaded",3e,ea,ee,fd),
HX_("close",b8,17,63,48),
HX_("load",26,9a,b7,47),
HX_("loadBytes",65,54,cf,d8),
HX_("unload",ff,a0,8c,65),
HX_("unloadAndStop",3a,03,03,7a),
HX_("__dispatchError",8e,03,7c,4b),
HX_("__setContent",d7,2c,ea,a4),
HX_("BitmapData_onError",83,7e,14,0a),
HX_("BitmapData_onLoad",cb,d7,a2,be),
HX_("BitmapData_onProgress",d2,6b,16,c1),
HX_("loader_onComplete",e4,7c,03,18),
HX_("loader_onError",bd,d6,01,b0),
HX_("loader_onProgress",d8,73,66,1e),
::String(null()) };
::hx::Class Loader_obj::__mClass;
void Loader_obj::__register()
{
Loader_obj _hx_dummy;
Loader_obj::_hx_vtable = *(void **)&_hx_dummy;
::hx::Static(__mClass) = new ::hx::Class_obj();
__mClass->mName = HX_("openfl.display.Loader",fd,67,b0,e2);
__mClass->mSuper = &super::__SGetClass();
__mClass->mConstructEmpty = &__CreateEmpty;
__mClass->mConstructArgs = &__Create;
__mClass->mGetStaticField = &::hx::Class_obj::GetNoStaticField;
__mClass->mSetStaticField = &::hx::Class_obj::SetNoStaticField;
__mClass->mStatics = ::hx::Class_obj::dupFunctions(0 /* sStaticFields */);
__mClass->mMembers = ::hx::Class_obj::dupFunctions(Loader_obj_sMemberFields);
__mClass->mCanCast = ::hx::TCanCast< Loader_obj >;
#ifdef HXCPP_SCRIPTABLE
__mClass->mMemberStorageInfo = Loader_obj_sMemberStorageInfo;
#endif
#ifdef HXCPP_SCRIPTABLE
__mClass->mStaticStorageInfo = Loader_obj_sStaticStorageInfo;
#endif
::hx::_hx_RegisterClass(__mClass->mName, __mClass);
}
void Loader_obj::__boot()
{
{
HX_STACKFRAME(&_hx_pos_1b7c318d3e4ffa4a_29_boot)
HXDLIN( 29) __mClass->__meta__ = ::Dynamic(::hx::Anon_obj::Create(1)
->setFixed(0,HX_("fields",79,8e,8e,80), ::Dynamic(::hx::Anon_obj::Create(1)
->setFixed(0,HX_("BitmapData_onError",83,7e,14,0a), ::Dynamic(::hx::Anon_obj::Create(1)
->setFixed(0,HX_("SuppressWarnings",0c,d3,d2,00),::cpp::VirtualArray_obj::__new(1)->init(0,HX_("checkstyle:Dynamic",ce,ea,47,3c))))))));
}
}
} // end namespace openfl
} // end namespace display
|
46058bd36b27c5902cc0cd1d71659fd88445169f | b71071f29f643c8ee4bf32e1f9951e0fb1f9712f | /mac.cpp | 1a89600dfa10ab8c82b0ca2878605d507ad7d588 | [] | no_license | simonaardal/Crypto-Calculator | 4bd93018fe9912c461e551e2db27c88d765b7d0e | a62e1cd7f354f44363281b85cbcf36a884deaa21 | refs/heads/master | 2023-02-10T21:44:04.299696 | 2021-01-08T16:41:37 | 2021-01-08T16:41:37 | 327,948,159 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,423 | cpp | mac.cpp | #include "mac.h"
#include<QVector>
#include<math.h>
#include"calculations.h"
#include<iostream>
#include "symmetric.h"
QVector<int> findCaesarMAC(QVector<int> binary, int n, int K, QVector<int> IV_binary){
QVector<int> temp;
QVector<int> y_binary = IV_binary;
int y = 0;
int mult = 0;
for(int i = 0; i < binary.length()+1; i++){
if(i % 4 == 0 && i > 0){
int temp1 = binaryToDecimal(temp);
y = mod(temp1+K, n);
y_binary.clear();
toBinary(y_binary, y);
fill(y_binary);
temp.clear();
mult++;
}
if(i != (binary.length())){
temp.append(y_binary.at(i-(4*mult)) xor binary.at(i));
}
}
return y_binary;
}
QVector<int> findAffineMAC(QVector<int> binary, int A, int B, int n, QVector<int> IV_binary){
QVector<int> temp;
QVector<int> y_binary = IV_binary;
int y = 0;
int mult = 0;
for(int i = 0; i < binary.length()+1; i++){
if(i % 4 == 0 && i > 0){
int temp1 = binaryToDecimal(temp);
y = encrypt_affine_num(A, B, n, temp1);
y_binary.clear();
toBinary(y_binary, y);
fill(y_binary);
temp.clear();
mult++;
}
if(i != (binary.length())){
temp.append(y_binary.at(i-(4*mult)) xor binary.at(i));
}
}
return y_binary;
}
|
3058d31b4e9449ddb3fc880079806c642286c035 | 6f874ccb136d411c8ec7f4faf806a108ffc76837 | /code/pushframework/3.1/PushFramework/private/StopWatch.cpp | a0685659600dda3f2b508d6da04fd18ac53d114d | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | JetAr/ZDoc | c0f97a8ad8fd1f6a40e687b886f6c25bb89b6435 | e81a3adc354ec33345e9a3303f381dcb1b02c19d | refs/heads/master | 2022-07-26T23:06:12.021611 | 2021-07-11T13:45:57 | 2021-07-11T13:45:57 | 33,112,803 | 8 | 8 | null | null | null | null | UTF-8 | C++ | false | false | 460 | cpp | StopWatch.cpp | #include "StdAfx.h"
#include "StopWatch.h"
#ifdef Plateform_Windows
#include "StopWatchImpl_Win.h"
#else
#ifdef Plateform_Linux
#include "StopWatchImpl_Linux.h"
#endif
#endif
namespace PushFramework
{
StopWatch::StopWatch()
{
pImpl = new StopWatchImpl;
}
StopWatch::~StopWatch( )
{
delete pImpl;
}
void StopWatch::reset()
{
pImpl->reset();
}
double StopWatch::getElapsedTime( bool bStart /*= true*/ )
{
return pImpl->getElapsedTime();
}
}
|
9a42314fa0209da75e34dee9ff5df69d187ee860 | 8be055a43ab98fd8ecc75dca3dd840fa3de337c2 | /lib/simple_handler.h | e5eb805c2d807f35d9a72e3edc5188b20affe0a6 | [
"BSD-2-Clause",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | maxerickson/pyosmium | f99b5b7a4bf403915630b8f46463a86747cda688 | cdbfa0e6c797ac64c91a3105719e4eca15896be1 | refs/heads/master | 2022-04-16T03:23:44.646247 | 2020-03-24T20:26:24 | 2020-03-24T20:28:01 | 254,975,438 | 1 | 0 | BSD-2-Clause | 2020-04-11T23:45:29 | 2020-04-11T23:45:28 | null | UTF-8 | C++ | false | false | 5,337 | h | simple_handler.h | #ifndef PYOSMIUM_SIMPLE_HANDLER_HPP
#define PYOSMIUM_SIMPLE_HANDLER_HPP
#include <pybind11/pybind11.h>
#include <osmium/io/any_input.hpp>
#include <osmium/io/file.hpp>
#include <osmium/visitor.hpp>
#include "base_handler.h"
class SimpleHandler: public BaseHandler
{
public:
virtual ~SimpleHandler() = default;
void apply_file(const std::string &filename, bool locations = false,
const std::string &idx = "flex_mem")
{
apply_object(osmium::io::File(filename), locations, idx);
}
void apply_buffer(pybind11::buffer const &buf, std::string const &format,
bool locations = false,
const std::string &idx = "flex_mem")
{
Py_buffer pybuf;
PyObject_GetBuffer(buf.ptr(), &pybuf, PyBUF_C_CONTIGUOUS);
apply_object(osmium::io::File(reinterpret_cast<const char *>(pybuf.buf),
(size_t) pybuf.len, format.c_str()),
locations, idx);
}
private:
void apply_object(osmium::io::File file, bool locations, const std::string &idx)
{
osmium::osm_entity_bits::type entities = osmium::osm_entity_bits::nothing;
BaseHandler::pre_handler handler = locations?
BaseHandler::location_handler
:BaseHandler::no_handler;
auto callbacks = enabled_callbacks();
if (callbacks & osmium::osm_entity_bits::area)
{
entities = osmium::osm_entity_bits::object;
handler = BaseHandler::area_handler;
} else {
if (locations || callbacks & osmium::osm_entity_bits::node)
entities |= osmium::osm_entity_bits::node;
if (callbacks & osmium::osm_entity_bits::way)
entities |= osmium::osm_entity_bits::way;
if (callbacks & osmium::osm_entity_bits::relation)
entities |= osmium::osm_entity_bits::relation;
}
if (callbacks & osmium::osm_entity_bits::changeset)
entities |= osmium::osm_entity_bits::changeset;
pybind11::gil_scoped_release release;
apply(file, entities, handler, idx);
}
};
class PySimpleHandler : public SimpleHandler
{
public:
using SimpleHandler::SimpleHandler;
osmium::osm_entity_bits::type enabled_callbacks() override
{
auto callbacks = osmium::osm_entity_bits::nothing;
if (callback("node"))
callbacks |= osmium::osm_entity_bits::node;
if (callback("way"))
callbacks |= osmium::osm_entity_bits::way;
if (callback("relation"))
callbacks |= osmium::osm_entity_bits::relation;
if (callback("area"))
callbacks |= osmium::osm_entity_bits::area;
if (callback("changeset"))
callbacks |= osmium::osm_entity_bits::changeset;
return callbacks;
}
// handler functions
void node(osmium::Node const *n) override
{
pybind11::gil_scoped_acquire acquire;
auto func = callback("node");
if (func) {
auto obj = pybind11::cast(n, pybind11::return_value_policy::reference);
func(obj);
if (obj.ref_count() != 1)
throw std::runtime_error("Node callback keeps reference to OSM object. This is not allowed.");
}
}
void way(osmium::Way const *w) override
{
pybind11::gil_scoped_acquire acquire;
auto func = callback("way");
if (func) {
auto obj = pybind11::cast(w, pybind11::return_value_policy::reference);
func(obj);
if (obj.ref_count() != 1)
throw std::runtime_error("Way callback keeps reference to OSM object. This is not allowed.");
}
}
void relation(osmium::Relation const *r) override
{
pybind11::gil_scoped_acquire acquire;
auto func = callback("relation");
if (func) {
auto obj = pybind11::cast(r, pybind11::return_value_policy::reference);
func(obj);
if (obj.ref_count() != 1)
throw std::runtime_error("Relation callback keeps reference to OSM object. This is not allowed.");
}
}
void changeset(osmium::Changeset const *c) override
{
pybind11::gil_scoped_acquire acquire;
auto func = callback("changeset");
if (func) {
auto obj = pybind11::cast(c, pybind11::return_value_policy::reference);
func(obj);
if (obj.ref_count() != 1)
throw std::runtime_error("Changeset callback keeps reference to OSM object. This is not allowed.");
}
}
void area(osmium::Area const *a) override
{
pybind11::gil_scoped_acquire acquire;
auto func = callback("area");
if (func) {
auto obj = pybind11::cast(a, pybind11::return_value_policy::reference);
func(obj);
if (obj.ref_count() != 1)
throw std::runtime_error("Area callback keeps reference to OSM object. This is not allowed.");
}
}
private:
pybind11::function callback(char const *name)
{ return pybind11::get_overload(static_cast<SimpleHandler const *>(this), name); }
};
#endif // PYOSMIUM_SIMPLE_HANDLER_HPP
|
355250c93b80ff36b0eb556aadb04e0aaf3fd745 | e2edc0d70229999bba49082beabfec7b37c0f7a0 | /library/include/borealis/core/logger.hpp | b4ae19d191bd34e13bba26cd8ccb629747b329b5 | [
"Apache-2.0"
] | permissive | FaultyPine/borealis | 0ce3491bfd84a5f2a4aa7bede680cc8cdee3afd6 | 6053f78ec2eec829b4d9c9330cf3b5d591a7bfa2 | refs/heads/main | 2023-03-31T06:24:49.548748 | 2021-04-02T17:08:41 | 2021-04-02T17:08:41 | 354,082,478 | 0 | 0 | Apache-2.0 | 2021-04-02T17:05:26 | 2021-04-02T17:05:26 | null | UTF-8 | C++ | false | false | 2,343 | hpp | logger.hpp | /*
Copyright 2019 natinusala
Copyright 2019 p-sam
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#pragma once
#include <fmt/core.h>
#include <string>
namespace brls
{
enum class LogLevel
{
ERROR = 0,
WARNING,
INFO,
DEBUG
};
class Logger
{
public:
static void setLogLevel(LogLevel logLevel);
template <typename... Args>
inline static void log(LogLevel logLevel, std::string prefix, std::string color, std::string format, Args&&... args)
{
if (Logger::logLevel < logLevel)
return;
try
{
fmt::print("\033{}[{}]\033[0m ", color, prefix);
fmt::print(format, args...);
fmt::print("\n");
}
catch (const std::exception& e)
{
// will be printed after the first fmt::print (so after the log tag)
printf("! Invalid log format string: \"%s\": %s\n", format.c_str(), e.what());
}
#ifdef __MINGW32__
fflush(0);
#endif
}
template <typename... Args>
inline static void error(std::string format, Args&&... args)
{
Logger::log(LogLevel::ERROR, "ERROR", "[0;31m", format, args...);
}
template <typename... Args>
inline static void warning(std::string format, Args&&... args)
{
Logger::log(LogLevel::WARNING, "WARNING", "[0;33m", format, args...);
}
template <typename... Args>
inline static void info(std::string format, Args&&... args)
{
Logger::log(LogLevel::INFO, "INFO", "[0;34m", format, args...);
}
template <typename... Args>
inline static void debug(std::string format, Args&&... args)
{
Logger::log(LogLevel::DEBUG, "DEBUG", "[0;32m", format, args...);
}
private:
inline static LogLevel logLevel = LogLevel::INFO;
};
} // namespace brls
|
1b98f16ec89d723b4cc5ad75cf6e685438fe1229 | 1d184886090316478bc63a4438901fc9f4d903d8 | /sql_connect/insert_cgi.cpp | e37097bcb52acfd63aba75a56fc29a9df5a3f475 | [] | no_license | jelly9/httpd | 85764b68d82dc25354a503197b8f06e424e5138c | ece0d67c24af7f8db783a249af9df1e967daeddf | refs/heads/master | 2020-04-07T10:15:04.997324 | 2018-08-09T16:58:07 | 2018-08-09T16:58:07 | 124,203,225 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,717 | cpp | insert_cgi.cpp |
#include "sql_api.h"
using namespace std;
void insertToDb(const char *arg)
{
char arg_buff[1024];
//name="a"&sex="man"&age="20"&hobby="coding"&school="SUST"
char *myargv[6];
char *start = arg_buff;
strcpy(arg_buff, arg);
int i = 0;
while(*start){
if(*start == '='){
++start;
myargv[i++] = start;
}
if(*start == '&'){
*start = '\0';
}
start++;
}
myargv[i] = '\0';
sqlApi mydb("127.0.0.1", \
3306, \
"root", \
"m9", \
"httpd");
mydb.connect();
mydb.insert(myargv[0], myargv[1], myargv[2], myargv[3], myargv[4]);
}
int main()
{
#ifdef _DEBUG_
sqlApi mydb("127.0.0.1", \
3306, \
"root", \
"m9", \
"httpd");
mydb.connect();
mydb.insert("LM", "wman", "18", "study", "SUST");
#else
char *method = NULL;
char *query_string = NULL;
char *string_arg = NULL;
int content_len = -1;
char buf[1024];
if((method = getenv("METHOD"))){
if(strcasecmp(method, "GET") == 0){\
if((query_string = getenv("QUERY_STRING"))){
string_arg = query_string;
}
}
else if(strcasecmp(method, "POST") == 0){
if(getenv("CONTET_LEN")){
content_len = atoi(getenv("CONTENT_LEN"));
int i = 0;
for(; i < content_len; i++){
read(0, &buf[i], 1);
}
buf[i] = '\0';
string_arg = buf;
}
}
}
insertToDb(string_arg);
#endif
return 0;
}
|
d7821bc5f1eb38c0bf1b8fed119f55afd14c31d4 | 2991ac96b1e5023a0131ba17b75e9ed97e65cda3 | /名表查找顺序.cpp | 36039c832cb704b6ea38cb1b1ef62f98a10963fc | [] | no_license | velonisa/CPP-ProgrammingBasics | 83d22852b6ea5a659155906341f8b3fe99a86493 | 81157950f3c8292d4cd7b376751c3fc33e4c5356 | refs/heads/main | 2022-12-19T17:28:36.462552 | 2020-10-04T16:31:56 | 2020-10-04T16:31:56 | 301,175,210 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 767 | cpp | 名表查找顺序.cpp | #include<iostream>
#include<cstring>
using namespace std;
const int NAME_LEN=20;
const int TABLE_LEN=100;
struct TableItem
{
char name[NAME_LEN];
int age;
};
TableItem name_table[TABLE_LEN];
int linear_search(char key[],TableItem t[], int num_of_items)
{
int index;
for(index=0;index<num_of_items;index++)
if (strcmp(key,t[index].name)==0) break;
if(index<num_of_items)
return index;
else
{
return -1;
}
}
int main()
{
int n;//nametable length
//get information of nametable
char name[NAME_LEN];
//get name looked for
int result = linear_search(name,name_table,n);
if (result==-1)
{
cout<<"Not found";
return -1;
}
//name_table[result]
return 0;
} |
d86d807f98a75986eac369f896e5506ce03d00f7 | 51a8b90cd68bb7ed03a452fb1341555ea366b93a | /IRC2/BrainFry.cpp | be77942b8d9db0ca872ef9c7557c0cfd515ff307 | [] | no_license | Amere/CompetetiveProgramming-Problems-Library | 2b833d79c8fc448a0703dd58e20740ba8623c609 | c076ff6e8ebe434583173b078ca648f20a5492fe | refs/heads/master | 2021-01-20T20:18:32.966625 | 2016-12-20T14:50:58 | 2016-12-20T14:50:58 | 61,013,401 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,366 | cpp | BrainFry.cpp | //
// main.cpp
// C++Workspace
//
// Created by Ahmed Amer on 5/30/15.
// Copyright (c) 2015 Ahmed Amer. All rights reserved.
#include <map>
#include <set>
#include <iostream>
#include <algorithm>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <cmath>
#include <cstdio>
#include <vector>
#include <queue>
#include <stack>
#include <sstream>
#include <fstream>
#include <iomanip>
#include <bitset>
using namespace std;
#define INF 1000000000
int N,M,T;
vector<double> prob;
int AdjMatrix[260][260];
vector<vector<pair<int, int>>> AdjList;
pair<double, double> memo[250+3][20000+3];
pair<double, double> solve(int u,int curT){
if (curT>=T) {
return make_pair(0, AdjMatrix[0][u]*prob[u]);
}
if (memo[u][curT].first != -1) {
return memo[u][curT];
}
double p = prob[u];
double t = p * AdjMatrix[0][u];
for (int i=0; i<AdjList[u].size(); i++) {
pair<int, int> v = AdjList[u][i];
pair<double, double> res = solve(v.first, curT+v.second);
p+=res.first;
t+=res.second;
}
return memo[u][curT] = make_pair(p, t);
}
int main() {
ios_base::sync_with_stdio(0);cin.tie(0);
int t;
cin>>t;
int tC = 0;
while (t--) {
tC++;
cin>>N>>M>>T;
prob.assign(N+1, 0);
for (int i=1; i<=N; i++) {
cin>>prob[i];
}
AdjList.assign(N+1, vector<pair<int , int>>());
memset(AdjMatrix, INF, sizeof(AdjMatrix));
for (int i=0; i<M; i++) {
int u,v,c;
cin>>u>>v>>c;
AdjList[u].push_back(make_pair(v, c));
AdjList[v].push_back(make_pair(u, c));
AdjMatrix[u][v] = c;
AdjMatrix[v][u] = c;
}
for (int k = 0; k < N; k++)
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++){
if(AdjMatrix[i][k] + AdjMatrix[k][j]<AdjMatrix[i][j]){
AdjMatrix[i][j] = AdjMatrix[i][k] + AdjMatrix[k][j];
}
}
for (int i=0; i<=250; i++) {
for (int j=0; j<=20000; j++) {
memo[i][j] = make_pair(-1, -1);
}
}
pair<double,double> f = make_pair(0,0);
cout<<setprecision(5);
cout<<"Case "<<tC<<": "<<f.first<<" "<<f.second<<endl;
}
return 0;
}
|
80bf0ee4f22704cdd5ae8ccaf1c838e73086c53b | 8a769167db4ed400c1e9e8663eb86b85097428d2 | /xlors/outerfinderbynetengine.cpp | 8f28ccd468dc3a1e5b31283007f2aff98312cb56 | [] | no_license | d0cklng/YesMyLord | dfd106045be351228af27f2f9f8c2ae4b92db6ed | dd6e1415396af3acb40324170e5aba86de563130 | refs/heads/master | 2020-04-18T10:48:38.763836 | 2016-09-05T14:32:13 | 2016-09-05T14:32:13 | 67,426,628 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,208 | cpp | outerfinderbynetengine.cpp | #include "outerfinderbynetengine.h"
#include "jinassert.h"
#include "jinlogger.h"
#include "jinassistthread.h"
#include "jindatatime.h"
#include "xlors_share.h"
#include "jinpackhelper.h"
OuterFinderByNetEngine::OuterFinderByNetEngine(ISinkForOuterFinder* cb, const JinString &selfIdentify)
: IOuterFinder(cb)
, finder_(NULL)
, timer_(NULL)
, timerid_(0)
, netid_(NETID_INVALID)
, jinzeyucn_(NETID_INVALID)
, reconntid_(0)
, selfIdent_(selfIdentify)
, state_(WaitXlorsConn)
{
targetidentify_[0] = '\0';
}
OuterFinderByNetEngine::~OuterFinderByNetEngine()
{
}
bool OuterFinderByNetEngine::Start(const JinNetAddr &addr)
{
outside_ = addr;
if(isStart_)Stop();
JAssert(isStart_==false);
JAssert(finder_==NULL);
char buf[32];
finder_ = INetEngine::GetInstance();
if(!finder_) return false;
netid_ = finder_->Init(this);
if(outside_.rawIP() != 0)
{ //如果没指定地址就不绑定,如此不用触发防火墙.
unsigned short portBind = finder_->Bind(0,outside_.toAddr4(buf));
JPLog("port:%hu bind.", portBind);
if(portBind == 0)
{
INetEngine::DestroyInstance(finder_);
finder_ = NULL;
return false;
}
}
connjzycn_ = finder_->Connect(kLorsDefaultAddr,kLorsDefaultPort);
finder_->AttachAsPunchthroughClient();
finder_->AttachAsUDPProxyClient();
timer_ = JinMainThread::Get()->getTimer();
timerid_ = timer_->start(3,true,sHandleTimeout,this);
HostPort port = finder_->GetMyNetID();
if(port > 0)
{
upnpc_.OpenPort(JinNetPort(port));
}
isStart_ = true;
return true;
}
void OuterFinderByNetEngine::Stop()
{
if(!isStart_)return;
if(timerid_) timer_->cancel(timerid_);
if(reconntid_) timer_->cancel(reconntid_);
INetEngine::DestroyInstance(finder_);
connjzycn_ = 0;
isStart_ = false;
}
int OuterFinderByNetEngine::OnNetMsg(INetEngine *src, NetID id, sockaddr_in addr4, NetEngineMsg *packet, const int lenFromNetMsg, int head)
{
JAssert(src == finder_);
JinNetAddr addr = JinNetAddr::fromRawIP(addr4.sin_addr.s_addr);
JinNetPort port = JinNetPort::fromRawPort(addr4.sin_port);
JDLog("id=%"PRIu64",%s|%hu type=%hhu, LenInPack=%d",
id,addr.toAddr(gDLogBufAddr),port.port(),
packet->PacketType0,lenFromNetMsg);
switch (packet->PacketType0)
{
case TYPE_APPLICATION_DATA:
{
if(id == jinzeyucn_)
{
OnXlorsRecv(packet,lenFromNetMsg);
}
else
{
callback_->OnRecv(id,addr,port,packet,lenFromNetMsg,head);
//DoClose(id);
}
}
break;
case TYPE_CONNECTION_ACCEPT:
{
NetEngineConnection *nc = (NetEngineConnection*)packet;
//JAssert(connjzycn_ == nc->id);
if(connjzycn_ && connjzycn_ == nc->id)
{
connjzycn_ = 0;
JPLog("success conn to %s",kLorsDefaultAddr);
jinzeyucn_ = id;
OnXlorsConn();
}
else if(conntarget_ && conntarget_ == nc->id)
{
conntarget_ = 0;
JPLog("success conn to target.");
targetid_ = id;
JDLog("state => TargetOnWork");
state_ = TargetOnWork;
callback_->OnFind(id,addr,port);
}
else
{
JELog("expired conn notify.");
finder_->Close(id);
}
}
break;
case TYPE_CONNECTION_FAILED: //只会主动连服务器,所以只考虑jinzeyucn服务器.
{
NetEngineConnection *nc = (NetEngineConnection*)packet;
//JAssert(connjzycn_ == nc->id);
if(connjzycn_ && connjzycn_ == nc->id)
{
connjzycn_ = 0;
JAssert(reconntid_ == 0);
JPLog("fail conn to %s",kLorsDefaultAddr);
reconntid_ = timer_->start(kReconnJinzeyuTimeMore,false,sHandleTimeout,this);
}
else if(conntarget_ && conntarget_ == nc->id)
{
conntarget_ = 0;
JPLog("fail conn to target.");
//JDLog("state => TargetOnWork");
//state_ = TargetOnWork;
JinMainThread::notifyQuit();
}
else
{
JELog("expired conn fail notify.");
//finder_->Close(id);
}
}
break;
case TYPE_CONNECTION_CLOSE:
case TYPE_CONNECTION_LOST:
{
bool bGrace = (TYPE_CONNECTION_CLOSE==packet->PacketType0);
if(id == jinzeyucn_)
{
JAssert(reconntid_ == 0);
JPLog("conn %s from %s",(bGrace?"close":"lost"),kLorsDefaultAddr);
jinzeyucn_ = NETID_INVALID;
reconntid_ = timer_->start(kReconnJinzeyuTime,false,sHandleTimeout,this);
if(state_ < Xlors_server_depend)
{
JDLog("state => WaitXlorsConn");
state_ = WaitXlorsConn;
}
}
else if(id == targetid_)
{
if(bGrace)
{
JDLog("conn closed.");
callback_->OnClose(id, true);
//JinMainThread::notifyQuit();
}
else
{
JDLog("state => back TargetConnecting");
state_ = TargetConnecting;
conntarget_ = finder_->ConnectEx(CONN_METHOD_PUNCHTHROUGH,jinzeyucn_,targetid_);
callback_->OnClose(id, false);
}
}
else
{ //只有两种连出连接哦.
JELog("expired conn lost. %"PRIu64, id);
}
}
break;
case TYPE_CONNECTION_INCOMING:
{
JDLog("income addr=%s|%hu id=%"PRIu64,addr.toAddr4(gDLogBufAddr),port.port(),id);
}
//no break;
default:
JDLog("drop client because of unexpect type. %d",(int)packet->PacketType0);
//DoClose(id);
//TODO DoClose remote ;
}
return -1;
}
void OuterFinderByNetEngine::sHandleTimeout(TimerID id, void *user, uint64_t user64)
{
OuterFinderByNetEngine* lorb = (OuterFinderByNetEngine*)user;
lorb->handleTimeout(id);
}
void OuterFinderByNetEngine::handleTimeout(TimerID id)
{
//JAssert(id == timerid_);
if(id == timerid_)
{
if(!finder_)return;
while(finder_->ProcPacket(JinDateTime::tickCount())) { }
}
else if(id == reconntid_)
{
reconntid_ = 0;
JAssert(connjzycn_ == 0);
JDLog("reconn to %s",kLorsDefaultAddr);
connjzycn_ = finder_->Connect(kLorsDefaultAddr,kLorsDefaultPort);
}
}
bool OuterFinderByNetEngine::DoSend(NetPacket *pack, int DataLenInPack, NetID id, uint16_t tunnid)
{
int headMixUp = tunnid%250+1;
return finder_->Send(pack,DataLenInPack,SEND_NORMAL,PACK_TCPLIKE,0,id, false, headMixUp);
}
//bool OuterFinderByNetEngine::DoClose(const NetID &id)
//{ //主动close 不回调.
// return finder_->Close(id);
// //OnClose(id,false);
//}
void OuterFinderByNetEngine::Find(const char *identity)
{
JDLog("Set identity find:%s",identity);
size_t ilen = strlen(identity);
JAssert(ilen < kIdentityLength);
if(ilen >= kIdentityLength) return;
strcpy(targetidentify_,identity);
tryDoFinderWork();
}
const char *OuterFinderByNetEngine::CurrentTarget()
{
return targetidentify_;
}
bool OuterFinderByNetEngine::OnXlorsConn()
{
// 发送信息注册.
JinPackJoiner joiner;
joiner.setHeadID(kMainO2S,kAsstLogin);
//joiner.pushString(kOuCert,); //暂未发送,服务暂不验证
//joiner.pushString(kOuPubKey,);
joiner.pushString(kUkIdentity,selfIdent_.c_str());
if(state_ == WaitXlorsConn)
{
JDLog("state => XlorsAlreadyConn");
state_ = XlorsAlreadyConn;
tryDoFinderWork(); //因为不一定要服务器认可,就可以开始找人.
}
JAssert(jinzeyucn_ != NETID_INVALID);
return this->DoSend((NetPacket*)joiner.buff(),joiner.length()-1, jinzeyucn_);
}
void OuterFinderByNetEngine::OnXlorsRecv(NetEngineMsg *packet, const int lenFromMainID)
{
JinPackParser parser((const char*)packet,lenFromMainID+1,1);
if(!parser.isValid() || parser.mainID()!=kMainS2O)
{
JELog("packet from server error.");
return ;
}
switch(parser.asstID())
{
case kAsstRtnLogin:
{
//if(state_ != TargetConnecting)
//{
// JDLog("state=%d not TargetConnecting",(int)state_);
// break;
//}
uint16_t ec = parser.get16u(kUkErrorCode);
uint32_t rawip = parser.get32u(kUkIPv4);
uint16_t port = parser.get16u(kUkPort);
JDLog("My outer addr by jinzeyu.cn is %s|%hu",
JinNetAddr::fromRawIP(rawip).toAddr4(gDLogBufAddr),port);
if(ec != kEcSuccess)
{
JinString eMsg = parser.getStr(kUkMessage);
JPLog("Login faild. ec=%hu eMsg=%s", ec, eMsg.c_str());
}
else
{
JPLog("Login success");
}
}
break;
case kAsstRtnFind:
{
if(state_ != TargetFinding)
{
JDLog("state=%d not targetfinding",(int)state_);
break;
}
uint16_t ec = parser.get16u(kUkErrorCode);
if(ec == kEcSuccess)
{
uint64_t netid = parser.get64u(kUkNetID);
uint32_t ipv4 = parser.get32u(kUkIPv4);
uint16_t port = parser.get16u(kUkPort);
JPLog("Find %s success => netid:%"PRIu64" %s|%hu",targetidentify_,netid,
JinNetAddr::fromRawIP(ipv4).toAddr(gDLogBufAddr),port);
if(netid == 0 || netid == NETID_INVALID)
{
JDLog("state => back XlorsAlreadyConn");
state_ = XlorsAlreadyConn;
JinMainThread::notifyQuit();
break;
}
JDLog("state => TargetConnecting");
state_ = TargetConnecting;
conntarget_ = finder_->ConnectEx(CONN_METHOD_PUNCHTHROUGH,jinzeyucn_,netid);
}
else
{
JinString eMsg = parser.getStr(kUkMessage);
JPLog("Find %s fail: %s",targetidentify_,eMsg.c_str());
JDLog("state => back XlorsAlreadyConn");
state_ = XlorsAlreadyConn;
JinMainThread::notifyQuit();
}
}
break;
default:
JELog("can't handle asstid:%hu",parser.asstID());
}
}
void OuterFinderByNetEngine::tryDoFinderWork()
{
JDLog("state_=%d ti[0]=%c",(int)state_,targetidentify_[0]);
if(state_ == XlorsAlreadyConn && targetidentify_[0] != '\0')
{
// 发送查找.
JinPackJoiner joiner;
joiner.setHeadID(kMainO2S,kAsstFind);
joiner.pushString(kUkIdentity,targetidentify_);
JAssert(jinzeyucn_ != NETID_INVALID);
this->DoSend((NetPacket*)joiner.buff(),joiner.length()-1, jinzeyucn_);
JDLog("state => TargetFinding");
state_ = TargetFinding;
}
}
IOuterFinder *IOuterFinder::CreateFinder(ISinkForOuterFinder *cb, const JinString &selfIdentify )
{
return JNew(OuterFinderByNetEngine,cb,selfIdentify);
}
void IOuterFinder::DestroyFinder(IOuterFinder *of)
{
JDelete(of);
}
|
af07f1361bad4e899e7ede2e4277c2bbdda42af4 | 9d364070c646239b2efad7abbab58f4ad602ef7b | /platform/external/chromium_org/chrome/installer/util/product_operations.h | 47fc616fa9d394e9a555c180ab3ce0842a93648e | [
"BSD-3-Clause"
] | permissive | denix123/a32_ul | 4ffe304b13c1266b6c7409d790979eb8e3b0379c | b2fd25640704f37d5248da9cc147ed267d4771c2 | refs/heads/master | 2021-01-17T20:21:17.196296 | 2016-08-16T04:30:53 | 2016-08-16T04:30:53 | 65,786,970 | 0 | 2 | null | 2020-03-06T22:00:52 | 2016-08-16T04:15:54 | null | UTF-8 | C++ | false | false | 2,380 | h | product_operations.h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_
#define CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_
#include <set>
#include <string>
#include <vector>
#include "base/files/file_path.h"
#include "base/strings/string16.h"
#include "chrome/installer/util/shell_util.h"
#include "chrome/installer/util/util_constants.h"
class BrowserDistribution;
namespace base {
class CommandLine;
}
namespace installer {
class ChannelInfo;
class MasterPreferences;
class ProductOperations {
public:
virtual ~ProductOperations() {}
virtual void ReadOptions(const MasterPreferences& prefs,
std::set<base::string16>* options) const = 0;
virtual void ReadOptions(const base::CommandLine& command,
std::set<base::string16>* options) const = 0;
virtual void AddKeyFiles(const std::set<base::string16>& options,
std::vector<base::FilePath>* key_files) const = 0;
virtual void AddComDllList(
const std::set<base::string16>& options,
std::vector<base::FilePath>* com_dll_list) const = 0;
virtual void AppendProductFlags(const std::set<base::string16>& options,
base::CommandLine* cmd_line) const = 0;
virtual void AppendRenameFlags(const std::set<base::string16>& options,
base::CommandLine* cmd_line) const = 0;
virtual bool SetChannelFlags(const std::set<base::string16>& options,
bool set,
ChannelInfo* channel_info) const = 0;
virtual bool ShouldCreateUninstallEntry(
const std::set<base::string16>& options) const = 0;
virtual void AddDefaultShortcutProperties(
BrowserDistribution* dist,
const base::FilePath& target_exe,
ShellUtil::ShortcutProperties* properties) const = 0;
virtual void LaunchUserExperiment(const base::FilePath& setup_path,
const std::set<base::string16>& options,
InstallStatus status,
bool system_level) const = 0;
};
}
#endif
|
61007d63287c7092920e306b93ea33732ebe5dbe | e73f4e7aafcc734a70fe4f956d2fcbd88dae3fd5 | /widgetchanger.h | 26b41ba6a219fc67aabdfb55c05d8c23d8149962 | [] | no_license | howardano/Qt-Text-Editor | ec448120b023a069344b6dc26a53ff75e0baa0cc | 182c4e649f81002be3a688e832a78f05cbe60d09 | refs/heads/master | 2020-09-27T17:49:53.195378 | 2019-12-11T08:52:58 | 2019-12-11T08:52:58 | 226,572,949 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 641 | h | widgetchanger.h | #ifndef WIDGETCHANGER_H
#define WIDGETCHANGER_H
#include <QWidget>
#include <QDockWidget>
#include <QFileSystemModel>
#include <QtCore>
#include <QtGui>
#include <QTabWidget>
#include "mainwindow.h"
namespace Ui {
class WidgetChanger;
}
class WidgetChanger : public QWidget
{
Q_OBJECT
public:
explicit WidgetChanger(QWidget *parent = nullptr);
~WidgetChanger();
void help(QStringList &list, QMainWindow ino);
private slots:
void on_listView_clicked(const QModelIndex &index);
private:
Ui::WidgetChanger * ui;
QStringListModel * mdl;
QStringList list;
QMainWindow * in;
};
#endif // WIDGETCHANGER_H
|
84e9bb18a54f4a0245016ccf4742356cfbff6c69 | 553d0e216df86f616e242f1f7c1a18df56b04397 | /Source/MemorySearch/PatternFinderSIMD.h | f88d75bcf20817b3fb619b11e79c5387ec14d99f | [
"MIT",
"LicenseRef-scancode-free-unknown"
] | permissive | ClaudiuHKS/Osiris | ed2fc849daee4f5f7a88660fd7440c5a19bd1d17 | 189b97b1874108e75335272bfef5a15c442c0d19 | refs/heads/master | 2023-03-16T14:12:16.199569 | 2023-01-04T21:28:40 | 2023-01-04T21:28:40 | 209,620,977 | 1 | 0 | MIT | 2019-09-19T18:18:40 | 2019-09-19T18:18:40 | null | UTF-8 | C++ | false | false | 512 | h | PatternFinderSIMD.h | #pragma once
#include <cassert>
#include <span>
#include <string_view>
#include "PatternFinder.h"
class PatternFinderSIMD {
public:
PatternFinderSIMD(std::span<const std::byte> bytes, std::string_view pattern);
const std::byte* operator()() noexcept;
[[nodiscard]] std::span<const std::byte> getNotCheckedBytes() const noexcept
{
return bytes.subspan(currentPos);
}
private:
std::size_t currentPos = 0;
std::span<const std::byte> bytes;
std::string_view pattern;
};
|
9dd7da0a75653e24d8b818b9cc310148d8f6e159 | de78b74157de4cd70d70b3747756c99554bcd6bc | /LeetCode/Top/Medium/PermutationInString.cpp | d51a2f575ee0fef4ccdccee1dfeb7262bfad1cf9 | [] | no_license | vidalmatheus/codes | ae1d5c31abf4f215c677109ef091221214c82758 | de9dfeb721df7a4a3036c32c1c83c02c7b53b8ac | refs/heads/master | 2023-02-09T15:32:04.713987 | 2020-12-21T15:04:00 | 2020-12-21T15:04:00 | 219,653,651 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,228 | cpp | PermutationInString.cpp | #include <bits/stdc++.h>
using namespace std;
static int speedUp=[](){
std::ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
return 0;
}();
class Solution {
public:
bool checkInclusion(string s1, string s2) {
if (s1.size()>s2.size())
return false;
vector<int> charCounter(26,0);
for (char c:s1)
charCounter[c-'a']++;
// sliding window
int left = 0;
int right = 0;
int counter = 0;
while (right < s2.size()){
if (charCounter[s2[right]-'a']>=1)
counter++;
charCounter[s2[right++]-'a']--;
if (counter == s1.size())
return true;
if (right - left == s1.size()){
if (charCounter[s2[left]-'a']>=0)
counter--;
charCounter[s2[left++]-'a']++;
}
}
return false;
}
};
// Time: O(n), where n is the size of s2
// Space: O(1)
int main(){
string s1 = "ab", s2 = "eidbaooo";
Solution sol;
sol.checkInclusion(s1,s2) ? cout << "true\n" : cout << "false\n";
return 0;
}
|
a3dafad9f4acd2b370c4940b99622d1397863778 | 05ec468488278a55e77667454470c911e948d65b | /linerenderer.cpp | 36fd6ffd3ae52b00a7d6fbe60695590737f55ef5 | [] | no_license | cbabnik/graphics_engine | 0dc1a0d752b36160cb86bcb653216321bed2dd8d | 27d9e56c9f49a62bbd1a77a0c368c6fe43954d63 | refs/heads/master | 2020-06-09T15:38:07.212790 | 2017-07-06T07:16:12 | 2017-07-06T07:16:12 | 76,030,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,985 | cpp | linerenderer.cpp |
// Line renderer implementation using bresenham's algorithm
#include "linerenderer.h"
#include <cmath>
void LineRenderer::draw_line(Point2D p1, Point2D p2, Color color /*white*/ ){
if( ! clipLine(p1, p2) )
return;
unsigned char octant = transformOctant( p1, p2 );
int dx = p2.x - p1.x;
int two_dx = 2*dx;
int two_dy = 2*(p2.y - p1.y);
int t2 = two_dy - two_dx;
int err = two_dy-dx; // to determine rounding
int y = p1.y;
setPixel(p1.x, p1.y, color, octant);
for( int x = p1.x+1; x <= p2.x; x++ ){
if( err >= 0 ){ // if rounded would be at next y value
err = err + t2; // add the slope but subtract 1
y++;
}
else
err = err + two_dy; // add the slope
setPixel(x, y, color, octant);
}
}
void LineRenderer::draw_line(Point2D p1, Point2D p2, Color color1, Color color2){
if( ! clipLine(p1, p2, color1, color2) )
return;
if( sortPoints( p1, p2 ) ){
Color swap = color1;
color1 = color2;
color2 = swap;
}
unsigned char octant = transformOctant( p1, p2 );
int dx = p2.x - p1.x;
if(dx==0) // condition for line to be too small to draw
return;
int two_dx = 2*dx;
int two_dy = 2*(p2.y - p1.y);
int t2_y = two_dy - two_dx;
int err_y = two_dy-dx; // to determine rounding
int y = p1.y;
// loop for red, green, blue
int dcc[3], ppcc[3], rcc[3], two_rcc[3], t2_cc[3], err_cc[3];
for( int i = 0; i < 3; i++ ){
dcc[i] = (color2[i] - color1[i]);
ppcc[i] = floor( float(dcc[i]) / dx );
rcc[i] = (dcc[i] >= 0) ? (dcc[i] % dx) : (dcc[i] % dx) + dx;
two_rcc[i] = 2*rcc[i];
t2_cc[i] = two_rcc[i] - two_dx;
err_cc[i] = two_rcc[i] - dx;
}
Color color = color1;
int ppc = ppcc[0]*0x10000 + ppcc[1]*0x100 + ppcc[2];
// draw line
setPixel(p1.x, p1.y, color1, octant);
for( int x = p1.x+1; x <= p2.x; x++ ){
// handle y
if( err_y >= 0 ){ // if rounded would be at next y value
err_y = err_y + t2_y; // add the slope but subtract 1
y++;
}
else
err_y = err_y + two_dy; // add the slope
// handle color the same way as y ( but add the per pixel val)
color.uint_val += ppc;
for( int i = 0; i < 3; i++ ){
if( err_cc[i] >= 0 ){
err_cc[i] += t2_cc[i];
color[i]++;
}
else
err_cc[i] += two_rcc[i];
}
setPixel(x, y, color, octant);
}
}
void LineRenderer::draw_line(Point3D p1, Point3D p2){
if( ! clipLine(p1, p2) )
return;
unsigned char octant = transformOctant( p1, p2 );
// intermediates ( math modulo to find remainder)
int dx = p2.x - p1.x;
if(dx==0) // condition for line to exist
return;
int dz = (p2.z - p1.z);
int rz = dz >= 0 ? (dz % dx) : (dz % dx) + dx;
// constants
int two_dx = 2*dx;
int two_dy = 2*(p2.y - p1.y);
int t2_y = two_dy - two_dx;
int ppz = floor( float(dz)/dx ); // per pixel z
int two_rz = 2*rz; // twice remainder z
int t2_z = two_rz - two_dx;
// variables
int err_y = two_dy-dx; // to determine rounding
int err_z = two_rz-dx;
int y = p1.y;
int z = p1.z;
// draw line
setPixel(p1.x, p1.y, p1.z, octant);
for( int x = p1.x+1; x <= p2.x; x++ ){
// handle y
if( err_y >= 0 ){ // if rounded would be at next y value
err_y = err_y + t2_y; // add the slope but subtract 1
y++;
}
else
err_y = err_y + two_dy; // add the slope
// handle z the same as y (but add per pixel value)
z += ppz;
if( err_z >= 0 ){
err_z = err_z + t2_z;
z++;
}
else
err_z = err_z + two_rz;
setPixel(x, y, z, octant);
}
}
void LineRenderer::draw_line(Point3D p1, Point3D p2, Color color1, Color color2){
if( ! clipLine(p1, p2, color1, color2) )
return;
if( sortPoints( p1, p2 ) ){
Color swap = color1;
color1 = color2;
color2 = swap;
}
unsigned char octant = transformOctant( p1, p2 );
// intermediates ( math modulo to find remainder)
int dx = p2.x - p1.x;
if(dx==0) // condition for line to exist
return;
int dz = (p2.z - p1.z);
int rz = dz >= 0 ? (dz % dx) : (dz % dx) + dx;
// constants
int two_dx = 2*dx;
int two_dy = 2*(p2.y - p1.y);
int t2_y = two_dy - two_dx;
int ppz = floor( float(dz)/dx ); // per pixel z
int two_rz = 2*rz; // twice remainder z
int t2_z = two_rz - two_dx;
// variables
int err_y = two_dy-dx; // to determine rounding
int err_z = two_rz-dx;
int y = p1.y;
int z = p1.z;
// loop for red, green, blue
int dcc[3], ppcc[3], rcc[3], two_rcc[3], t2_cc[3], err_cc[3];
for( int i = 0; i < 3; i++ ){
dcc[i] = (color2[i] - color1[i]);
ppcc[i] = floor( float(dcc[i]) / dx );
rcc[i] = (dcc[i] >= 0) ? (dcc[i] % dx) : (dcc[i] % dx) + dx;
two_rcc[i] = 2*rcc[i];
t2_cc[i] = two_rcc[i] - two_dx;
err_cc[i] = two_rcc[i] - dx;
}
Color color = color1;
int ppc = ppcc[0]*0x10000 + ppcc[1]*0x100 + ppcc[2];
// draw line
setPixel(p1.x, p1.y, p1.z, octant);
for( int x = p1.x+1; x <= p2.x; x++ ){
// handle y
if( err_y >= 0 ){ // if rounded would be at next y value
err_y = err_y + t2_y; // add the slope but subtract 1
y++;
}
else
err_y = err_y + two_dy; // add the slope
// handle z the same as y (but add per pixel value)
z += ppz;
if( err_z >= 0 ){
err_z = err_z + t2_z;
z++;
}
else
err_z = err_z + two_rz;
// handle color the same way as y ( but add the per pixel val)
color.uint_val += ppc;
for( int i = 0; i < 3; i++ ){
if( err_cc[i] >= 0 ){
err_cc[i] += t2_cc[i];
color[i]++;
}
else
err_cc[i] += two_rcc[i];
}
setPixel(x, y, z, color, octant);
}
}
// if one or both points are out of bounds, it will clip to the visable line.
// If none of the line is visable, false is returned and no change is made.
// You may want to do sorting AFTER, since this will mess with the points a bit
bool LineRenderer::clipLine(Point2D& p1, Point2D& p2){
Outcode o1 = outcode(p1.x, p1.y);
Outcode o2 = outcode(p2.x, p2.y);
if ( (o1.value & o2.value) != 0 ) // whole line is out of bounds
return false;
if ( (o1.value | o2.value) == 0 ) // whole line is in bounds
return true;
if( o1.value != 0 ) { // point 1 (at least) is out of bounds
if (o1.out.left) {
float ratio = (float)(xMin-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.x = xMin;
}
else if (o1.out.right) {
float ratio = (float)(xMax-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.x = xMax;
}
else if (o1.out.top) {
float ratio = (float)(yMin-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.y = yMin;
}
else if (o1.out.bottom) {
float ratio = (float)(yMax-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.y = yMax;
}
return clipLine(p1, p2);
}
else // point 2 is out of bounds
return clipLine(p2, p1);
}
bool LineRenderer::clipLine(Point3D& p1, Point3D& p2){
Outcode o1 = outcode(p1.x, p1.y);
Outcode o2 = outcode(p2.x, p2.y);
if ( (o1.value & o2.value) != 0 ) // whole line is out of bounds
return false;
if ( (o1.value | o2.value) == 0 ) // whole line is in bounds
return true;
if( o1.value != 0 ) { // point 1 (at least) is out of bounds
if (o1.out.left) {
float ratio = (float)(xMin-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.x = xMin;
}
else if (o1.out.right) {
float ratio = (float)(xMax-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.x = xMax;
}
else if (o1.out.top) {
float ratio = (float)(yMin-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.y = yMin;
}
else if (o1.out.bottom) {
float ratio = (float)(yMax-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.y = yMax;
}
else if (o1.out.front) {
float ratio = (float)(zMin-p1.z)/(p2.z-p1.z);
p1.x += (p2.x-p1.x)*ratio;
p1.y += (p2.y-p1.y)*ratio;
p1.z = zMin;
}
else if (o1.out.back) {
float ratio = (float)(zMax-p1.z)/(p2.z-p1.z);
p1.x += (p2.x-p1.x)*ratio;
p1.y += (p2.y-p1.y)*ratio;
p1.z = zMax;
}
return clipLine(p1, p2);
}
else // point 2 is out of bounds
return clipLine(p2, p1);
}
bool LineRenderer::clipLine(Point2D& p1, Point2D& p2, Color& c1, Color& c2){
Outcode o1 = outcode(p1.x, p1.y);
Outcode o2 = outcode(p2.x, p2.y);
if ( (o1.value & o2.value) != 0 ) // whole line is out of bounds
return false;
if ( (o1.value | o2.value) == 0 ) // whole line is in bounds
return true;
if( o1.value != 0 ) { // point 1 (at least) is out of bounds
float ratio = 0;
if (o1.out.left) {
ratio = (float)(xMin-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.x = xMin;
}
else if (o1.out.right) {
ratio = (float)(xMax-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.x = xMax;
}
else if (o1.out.top) {
ratio = (float)(yMin-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.y = yMin;
}
else if (o1.out.bottom) {
ratio = (float)(yMax-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.y = yMax;
}
p1[0] = (p2[0]-p1[0])*ratio;
p1[1] = (p2[1]-p1[1])*ratio;
p1[2] = (p2[2]-p1[2])*ratio;
return clipLine(p1, p2, c1, c2);
}
else // point 2 is out of bounds
return clipLine(p2, p1, c2, c1);
}
bool LineRenderer::clipLine(Point3D& p1, Point3D& p2, Color& c1, Color& c2){
Outcode o1 = outcode(p1.x, p1.y);
Outcode o2 = outcode(p2.x, p2.y);
if ( (o1.value & o2.value) != 0 ) // whole line is out of bounds
return false;
if ( (o1.value | o2.value) == 0 ) // whole line is in bounds
return true;
if( o1.value != 0 ) { // point 1 (at least) is out of bounds
float ratio = 0;
if (o1.out.left) {
ratio = (float)(xMin-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.x = xMin;
}
else if (o1.out.right) {
ratio = (float)(xMax-p1.x)/(p2.x-p1.x);
p1.y += (p2.y-p1.y)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.x = xMax;
}
else if (o1.out.top) {
ratio = (float)(yMin-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.y = yMin;
}
else if (o1.out.bottom) {
ratio = (float)(yMax-p1.y)/(p2.y-p1.y);
p1.x += (p2.x-p1.x)*ratio;
p1.z += (p2.z-p1.z)*ratio;
p1.y = yMax;
}
else if (o1.out.front) {
ratio = (float)(zMin-p1.z)/(p2.z-p1.z);
p1.x += (p2.x-p1.x)*ratio;
p1.y += (p2.y-p1.y)*ratio;
p1.z = zMin;
}
else if (o1.out.back) {
ratio = (float)(zMax-p1.z)/(p2.z-p1.z);
p1.x += (p2.x-p1.x)*ratio;
p1.y += (p2.y-p1.y)*ratio;
p1.z = zMax;
}
p1[0] = (p2[0]-p1[0])*ratio;
p1[1] = (p2[1]-p1[1])*ratio;
p1[2] = (p2[2]-p1[2])*ratio;
return clipLine(p1, p2, c1, c2);
}
else // point 2 is out of bounds
return clipLine(p2, p1, c2, c1);
}
// sorts points by x and returns whether they were resorted
bool LineRenderer::sortPoints(Point2D& p1, Point2D& p2){
// octants 1-4 to be below the x axis, 3-6 left of y axis
if( p1.x > p2.x ) // octants 3,4,5,6
{
// convert octants 3,4,5,6 to 7,8,1,2 respectively by swapping p1 and p2
Point2D swapP = p1;
p1 = p2;
p2 = swapP;
return true;
}
return false;
}
bool LineRenderer::sortPoints(Point3D& p1, Point3D& p2){
// octants 1-4 to be below the x axis, 3-6 left of y axis
if( p1.x > p2.x ) // octants 3,4,5,6
{
// convert octants 3,4,5,6 to 7,8,1,2 respectively by swapping p1 and p2
Point3D swapP = p1;
p1 = p2;
p2 = swapP;
return true;
}
return false;
}
// returns the octant transformed from
unsigned char LineRenderer::transformOctant(Point2D& p1, Point2D& p2){
sortPoints(p1, p2);
if( p1.y <= p2.y ) // octants 1,2
{
if( p2.x-p1.x >= p2.y-p1.y )
return 1;
else{
p1 = Point2D(p1.y, p1.x);
p2 = Point2D(p2.y, p2.x);
return 2;
}
}
else // octants 7,8
{
if( p2.x - p1.x >= p1.y - p2.y ){
p1 = Point2D(p1.x, -p1.y);
p2 = Point2D(p2.x, -p2.y);
return 8;
}
else{
p1 = Point2D(-p1.y, p1.x);
p2 = Point2D(-p2.y, p2.x);
return 7;
}
}
}
unsigned char LineRenderer::transformOctant(Point3D& p1, Point3D& p2){
sortPoints(p1, p2);
if( p1.y <= p2.y ) // octants 1,2
{
if( p2.x-p1.x >= p2.y-p1.y )
return 1;
else{
p1 = Point3D(p1.y, p1.x, p1.z);
p2 = Point3D(p2.y, p2.x, p2.z);
return 2;
}
}
else // octants 7,8
{
if( p2.x - p1.x >= p1.y - p2.y ){
p1 = Point3D(p1.x, -p1.y, p1.z);
p2 = Point3D(p2.x, -p2.y, p2.z);
return 8;
}
else{
p1 = Point3D(-p1.y, p1.x, p1.z);
p2 = Point3D(-p2.y, p2.x, p2.z);
return 7;
}
}
}
// reverses octant transformation before setting pixel
void LineRenderer::setPixel(int x, int y, int z, unsigned char octant){
switch( octant )
{
case 1: draw_pixel(x, y, z); break;
case 2: draw_pixel(y, x, z); break;
case 7: draw_pixel(y, -x, z); break;
case 8: draw_pixel(x, -y, z); break;
default:
throw "Unrecognized octant";
}
}
void LineRenderer::setPixel(int x, int y, Color color, unsigned char octant){
switch( octant )
{
case 1: draw_pixel(x, y, color.uint_val); break;
case 2: draw_pixel(y, x, color.uint_val); break;
case 7: draw_pixel(y, -x, color.uint_val); break;
case 8: draw_pixel(x, -y, color.uint_val); break;
default:
throw "Unrecognized octant";
}
}
void LineRenderer::setPixel(int x, int y, int z, Color color, unsigned char octant){
switch( octant )
{
case 1: draw_pixel(x, y, z, color.uint_val); break;
case 2: draw_pixel(y, x, z, color.uint_val); break;
case 7: draw_pixel(y, -x, z, color.uint_val); break;
case 8: draw_pixel(x, -y, z, color.uint_val); break;
default:
throw "Unrecognized octant";
}
}
|
5777a875f9dd00eb0bd8de6887c9740f1a27c905 | 8186e9740dd4e53afe442ad81580779994daafe9 | /Alg Math C++/Alg Math C++/1085 Escape in box.cpp | 9cd5a793c136613ca43b368a21579403e0126e72 | [] | no_license | ysryu63/Algorithm | 566b97eb0a720bb3e33841cd4f196f637062065e | 65f9febdece4c5dedcad0a57815b300eb219e370 | refs/heads/master | 2021-01-01T17:54:38.215392 | 2017-12-04T14:47:04 | 2017-12-04T14:47:04 | 98,196,680 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 231 | cpp | 1085 Escape in box.cpp | #include <iostream>
using namespace std;
int min(int x, int y) {
return x < y ? x : y;
}
int main()
{
int x, y, w, h;
cin >> x >> y >> w >> h;
int result = min(min(x, y), min(w - x, h - y));
cout << result;
return 0;
} |
6bf0162a70943ffb0818103077fd01aa5d78ba5b | b7e920b87426ff1bdbdffc80f3d28cf8212653a7 | /medium/smallest-string-starting-from-leaf.cpp | 99dff7f4bde4c646335777291e65b0c42830c8c4 | [] | no_license | mayankDhiman/LitCode | 69842446790cac4bc79d01c777b4023b53dfca17 | 99cd1a6f8e667a90c3f67cb7c807dbd649c83221 | refs/heads/master | 2021-07-10T11:53:33.577991 | 2020-12-30T14:23:07 | 2020-12-30T14:23:07 | 226,394,753 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 904 | cpp | smallest-string-starting-from-leaf.cpp | // 988. Smallest String Starting From Leaf
class Solution {
public:
string res;
set <TreeNode*> vis;
void dfs(TreeNode* r, string c) {
if ((r -> left == NULL) && (r -> right == NULL) ){
c += char('a' + r->val);
reverse(c.begin(), c.end());
cout << c << "\n";
if (c < res) {
res = c;
}
return;
}
vis.insert(r);
if (r -> left){
if (vis.find(r -> left) == vis.end()){
dfs(r -> left, c + char('a' + r->val) );
}
}
if (r -> right){
if (vis.find(r -> right) == vis.end()){
dfs(r -> right, c + char('a' + r->val) );
}
}
}
string smallestFromLeaf(TreeNode* root) {
res = string(8501, 'z');
dfs(root, "");
return res;
}
};
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.