Changeset 1557 in Sophya for trunk/SophyaLib/NTools
- Timestamp:
- Jun 27, 2001, 12:52:50 PM (24 years ago)
- Location:
- trunk/SophyaLib/NTools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/poly.cc
r960 r1557 199 199 200 200 //! Print on stream \b s 201 void Poly::Print(ostream& s, int_4 , bool ) const201 void Poly::Print(ostream& s, int_4 , bool, bool ) const 202 202 { 203 203 UpdateDegIfDirty(); … … 645 645 646 646 //! Print on stream \b s 647 void Poly2::Print(ostream& s, int_4 , bool ) const647 void Poly2::Print(ostream& s, int_4 , bool, bool ) const 648 648 { 649 649 UpdateDegIfDirty(); -
trunk/SophyaLib/NTools/poly.h
r958 r1557 1 1 // This may look like C code, but it is really -*- C++ -*- 2 2 // 3 // $Id: poly.h,v 1. 8 2000-04-18 13:38:36ansari Exp $3 // $Id: poly.h,v 1.9 2001-06-27 10:52:50 ansari Exp $ 4 4 // 5 5 … … 83 83 Poly2 operator() (Poly2 const& b) const; 84 84 85 void Print(ostream& s, int_4 maxprt=-1, bool si=false) const; 85 void Print(ostream& s, int_4 maxprt=-1, 86 bool si=false, bool ascd=false) const ; 86 87 87 88 double Fit(TVector<r_8> const& x, TVector<r_8> const& y, int degre); … … 224 225 void Realloc(int degreX, int degreY); 225 226 226 void Print(ostream& s, int_4 maxprt=-1, bool si=false) const; 227 void Print(ostream& s, int_4 maxprt=-1, 228 bool si=false, bool ascd=false) const ; 227 229 228 230 private:
Note:
See TracChangeset
for help on using the changeset viewer.