Changeset cfaf16 in git for Singular/svd


Ignore:
Timestamp:
Nov 3, 2017, 4:16:00 PM (7 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
c6e446fa33d72d4eb037ca712dfdec6a28c5914d
Parents:
dbb26818e03a9b85b6dd00922db4fdd7c008f44b
Message:
complier warnings: svd stuff
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/svd/libs/ap.cpp

    rdbb268 rcfaf16  
    88// ap::complex operations
    99//
    10 const bool ap::operator==(const ap::complex& lhs, const ap::complex& rhs)
     10bool ap::operator==(const ap::complex& lhs, const ap::complex& rhs)
    1111{ return lhs.x==rhs.x && lhs.y==rhs.y; }
    1212
    13 const bool ap::operator!=(const ap::complex& lhs, const ap::complex& rhs)
     13bool ap::operator!=(const ap::complex& lhs, const ap::complex& rhs)
    1414{ return lhs.x!=rhs.x || lhs.y!=rhs.y; }
    1515
     
    9494{ return ap::complex(lhs.x/rhs, lhs.y/rhs); }
    9595
    96 const double ap::abscomplex(const ap::complex &z)
     96double ap::abscomplex(const ap::complex &z)
    9797{
    9898    double w;
Note: See TracChangeset for help on using the changeset viewer.