typing error in mul.cpp

Chris Dams chrisd at sci.kun.nl
Wed Jun 18 23:12:33 CEST 2003


Hello nice GiNaC people,

Could you please change the line

	for (its = ls.begin(), itr != lr.begin(); its != ls.end(); ++its, ++itr)

that occurs in the file mul.cpp in the function mul::algebraic_subs_mul
into

	for (its = ls.begin(), itr = lr.begin(); its != ls.end(); ++its, ++itr)

(i.e., remove an exclamation mark). This should give less segmentation
faults in my programs.

Bye,
Chris Dams




More information about the GiNaC-devel mailing list