MCPcopy Create free account
hub / github.com/Singular/Singular / format_print

Method format_print

IntegerProgramming/list.cc:774–803  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

772
773
774void list::format_print(ofstream& output) const
775{
776
777#ifdef DL_LIST
778
779 element* iter=start->next;
780
781#endif // DL_LIST
782
783#ifdef SL_LIST
784
785 element *iter=start;
786
787#endif // SL_LIST
788
789 if(iter==NULL)
790 {
791 cerr<<"\nWARNING: void list::print(ofstream&) const:\n"
792 "cannot print corrupt list"<<endl;
793 output<<"\nWARNING: void list::print(oftream&) const:\ncannot print "
794 "corrupt list"<<endl;
795 return;
796 }
797
798 while(iter->next!=NULL)
799 {
800 iter->entry->format_print(output);
801 iter=iter->next;
802 }
803}
804
805
806

Callers 9

Conti_TraversoFunction · 0.45
Positive_Conti_TraversoFunction · 0.45
Elim_Conti_TraversoFunction · 0.45
PottierFunction · 0.45
Hosten_SturmfelsFunction · 0.45
DiBiase_UrbankeFunction · 0.45
Bigatti_LaScala_RobbianoFunction · 0.45
change_costFunction · 0.45
ordered_format_printMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected