Ignore:
Timestamp:
Feb 13, 2025, 5:52:15 PM (7 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
ef9f11c
Parents:
502ff9e (diff), 53f4b55 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/ResolvExpr/Cost.hpp

    r502ff9e rc341b57  
    169169}
    170170
     171inline bool operator<=( const Cost lhs, const Cost rhs ) {
     172        return !(rhs < lhs);
     173}
     174
    171175inline Cost operator+( const Cost lhs, const Cost rhs ) {
    172176        if ( lhs.all == Cost::infinity || rhs.all == Cost::infinity ) return Cost{ Cost::infinity };
Note: See TracChangeset for help on using the changeset viewer.