Changeset 1768
- Timestamp:
- 11/14/19 09:57:58 (3 years ago)
- Location:
- XIOS/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
XIOS/trunk/arch/arch-X64_IRENE.env
r1649 r1768 1 1 module unload netcdf-c netcdf-fortran hdf5 flavor perl hdf5 boost blitz mpi gnu 2 #module purge 2 3 module load flavor/hdf5/parallel 3 4 module load netcdf-fortran/4.4.4 -
XIOS/trunk/src/filter/binary_arithmetic_filter.cpp
r1704 r1768 18 18 { 19 19 bool building_graph = this->tag ? data[0]->timestamp >= this->start_graph && data[0]->timestamp <= this->end_graph : false; 20 // bool building_graph = true;21 20 int unique_filter_id; 22 21 bool firstround; -
XIOS/trunk/src/filter/ternary_arithmetic_filter.cpp
r1704 r1768 500 500 { 501 501 expression.assign(*yacc_globalInputText_ptr, 0, yacc_globalInputText_ptr->size()-1); 502 std::cout<<"expression = "<<expression;503 502 /* Nothing to do */ 504 503 }; -
XIOS/trunk/src/node/field.cpp
r1704 r1768 1451 1451 TRY 1452 1452 { 1453 if(CXios::isClient) std::cout<<"getSelfReference field_id = "<<this->getId()<<" start_graph = "<<start_graph<<" end_graph = "<<end_graph<<std::endl;1453 //if(CXios::isClient) std::cout<<"getSelfReference field_id = "<<this->getId()<<" start_graph = "<<start_graph<<" end_graph = "<<end_graph<<std::endl; 1454 1454 1455 1455 if (instantDataFilter || !hasExpression()) … … 1532 1532 1533 1533 instantDataFilter->connectOutput(temporalFilter, 0); 1534 // 1534 //temporalFilter->tag = buildWorkflowGraph; 1535 1535 1536 1536 temporalFilter->parent_filters.resize(1); … … 1538 1538 1539 1539 1540 if(temporalFilter->parent_filters[0]->tag) temporalFilter->tag=true; 1540 //if(temporalFilter->parent_filters[0]->tag) temporalFilter->tag=true; 1541 temporalFilter->tag = temporalFilter->parent_filters[0]->tag; 1542 temporalFilter->start_graph = temporalFilter->parent_filters[0]->start_graph; 1543 temporalFilter->end_graph = temporalFilter->parent_filters[0]->end_graph; 1541 1544 1542 1545 // temporalFilter->start_graph = filter_start; -
XIOS/trunk/src/parse_expr/filter_expr_node.cpp
r1704 r1768 424 424 425 425 std::shared_ptr<CFieldFieldFieldArithmeticFilter> filter(new CFieldFieldFieldArithmeticFilter(gc, opId)); 426 std::cout<<"std::shared_ptr<CFieldFieldFieldArithmeticFilter> filter(new CFieldFieldFieldArithmeticFilter(gc, opId))" <<std::endl;427 426 ch1->connectOutput(filter, 0); 428 427 ch2->connectOutput(filter, 1); -
XIOS/trunk/src/parse_expr/yacc_parser.cpp
r1704 r1768 93 93 //*yacc_globalInputText_ptr = globalInputText; 94 94 95 std::cout<<"========= yacc_globalInputText_ptr = "<<*yacc_globalInputText_ptr<<std::endl;96 95 97 96 size_t numBytesToRead = maxBytesToRead;
Note: See TracChangeset
for help on using the changeset viewer.