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

Method is_at_end

IntegerProgramming/list.cc:948–960  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

946
947
948BOOLEAN list_iterator::is_at_end() const
949{
950 if(actual==NULL)
951 // actual references no list
952 return(TRUE);
953
954 if(actual->next==NULL)
955 // actual references dummy element
956 return(TRUE);
957
958 // actual references a real element
959 return(FALSE);
960}
961
962
963

Callers 5

ideal_stuff.ccFile · 0.80
idealMethod · 0.80
unnecessary_S_pairMethod · 0.80
Buchberger.ccFile · 0.80
add_new_generatorsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected