소스 검색

Allow ! and bool operators on polynomials.

This allows us to manipulate polynomials of polynomials. Not sure why yet,
but it could be useful to implement 2-variable polynomials.
legacy
Sam Hocevar 7 년 전
부모
커밋
1db2c5ca0f
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. +11
    -0
      src/lol/math/polynomial.h

+ 11
- 0
src/lol/math/polynomial.h 파일 보기

@@ -274,6 +274,17 @@ struct LOL_ATTR_NODISCARD polynomial
return (*this)[degree()];
}

/* Boolean operations */
bool operator !() const
{
return degree() < 0;
}

operator bool() const
{
return !!*this;
}

/* Unary plus */
polynomial<T> operator +() const
{


불러오는 중...
취소
저장