- Timestamp:
 - 2015-06-19T07:59:03-07:00 (10 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  branches/f4grobner/order.lisp (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
branches/f4grobner/order.lisp
r2426 r2427 59 59 The second returned value is T if P=Q, otherwise it is NIL." 60 60 (declare (type monom p q) (type fixnum start end)) 61 (let ((d1 ( monom-total-degree p start end))62 (d2 ( monom-total-degree q start end)))61 (let ((d1 (r-total-degree p start end)) 62 (d2 (r-total-degree q start end))) 63 63 (declare (type fixnum d1 d2)) 64 64 (cond … … 92 92 NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL." 93 93 (declare (type monom p q) (type fixnum start end)) 94 (let ((d1 ( monom-total-degree p start end))95 (d2 ( monom-total-degree q start end)))94 (let ((d1 (r-total-degree p start end)) 95 (d2 (r-total-degree q start end))) 96 96 (declare (type fixnum d1 d2)) 97 97 (cond  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  