ConeSimplex and ARConeSimplex3D adjusted to work correctly with operator<(), operator==(), and boundary()
From artemis Tue Feb 26 23:24:44 2008From: Dmitriy Morozov <morozov@cs.duke.edu>Date: Tue, 26 Feb 2008 18:22:06 -0500State: newSubject: Get rid of intostring() and .c_str()Message-Id: <89ae955518665a61-0-artemis@metatron>Get rid of the need for intostring() (in addition to tostring()), and having toplace .c_str() after tostring() in rLog calls.The former is necessary because of some problem with disambiguating whichoperator<<(ostream,T) to use when Event is being output, so intostring() callsT.operator<<(ostream) explicitly. This problem seems to exist only for Events.It should be possible to solve the latter by returning char* from tostring()rather than std::string.